HEX
Server: Apache
System: Linux cp-in-12.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User: manomrd6 (1046)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home2/manomrd6/manomrd6_manomay9.1594995881.sql
-- MySQL dump 10.13  Distrib 5.6.41-84.1, for Linux (x86_64)
--
-- Host: localhost    Database: manomrd6_manomay9
-- ------------------------------------------------------
-- Server version	5.6.41-84.1

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

--
-- Table structure for table `bank_ledger`
--

DROP TABLE IF EXISTS `bank_ledger`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bank_ledger` (
  `ledger_id` int(11) NOT NULL AUTO_INCREMENT,
  `particlar_date` date NOT NULL,
  `bank_id` int(11) NOT NULL DEFAULT '0',
  `particulars` varchar(220) NOT NULL,
  `voucher_type` enum('Receipt','Payment') NOT NULL,
  `debit_amount` float(10,2) NOT NULL DEFAULT '0.00',
  `credit_amount` float(10,2) NOT NULL DEFAULT '0.00',
  `account_verified` enum('Yes','No') NOT NULL DEFAULT 'No',
  `account_verified_by` int(3) NOT NULL,
  `account_verified_on` date NOT NULL,
  `updated_by` int(3) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`ledger_id`),
  KEY `bank_id` (`bank_id`,`account_verified`),
  KEY `account_verified_by` (`account_verified_by`,`updated_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_ledger`
--

LOCK TABLES `bank_ledger` WRITE;
/*!40000 ALTER TABLE `bank_ledger` DISABLE KEYS */;
INSERT INTO `bank_ledger` VALUES (1,'2020-02-29',1,'Tea Bill Nanded','Payment',0.00,1500.00,'Yes',0,'2020-02-29',1,'2020-02-29');
/*!40000 ALTER TABLE `bank_ledger` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `child_products`
--

DROP TABLE IF EXISTS `child_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `child_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL,
  `child_pid` int(11) NOT NULL,
  `quantity` float(7,2) NOT NULL,
  `prod_unit` varchar(5) NOT NULL COMMENT 'based on Gravity',
  PRIMARY KEY (`id`),
  KEY `pid` (`pid`,`child_pid`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `child_products`
--

LOCK TABLES `child_products` WRITE;
/*!40000 ALTER TABLE `child_products` DISABLE KEYS */;
INSERT INTO `child_products` VALUES (1,2,148,0.50,'Kg'),(2,2,117,0.25,'Kg'),(3,2,145,0.25,'Lit'),(4,7,11,1.00,'Kg');
/*!40000 ALTER TABLE `child_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `client_order_prodcts`
--

DROP TABLE IF EXISTS `client_order_prodcts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `client_order_prodcts` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'This will be used in challen table as ref_id',
  `order_id` int(11) NOT NULL,
  `order_pid` int(11) NOT NULL DEFAULT '0',
  `prod_ref_name` varchar(256) NOT NULL,
  `description` text NOT NULL,
  `order_qty` float(10,2) NOT NULL,
  `order_rate` float(10,2) NOT NULL,
  `with_gst_amt` decimal(8,2) NOT NULL,
  `discount_per` float(5,2) NOT NULL DEFAULT '0.00',
  `tax_free` enum('Yes','No') NOT NULL DEFAULT 'No',
  `sgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `cgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `igst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `batch_no` varchar(30) NOT NULL,
  `exp_date` varchar(15) NOT NULL,
  `pu_id` int(4) NOT NULL,
  `packing` varchar(50) NOT NULL,
  `pu_conversion` decimal(7,3) NOT NULL,
  `mstr_unit` varchar(4) NOT NULL,
  `po_number` varchar(20) NOT NULL DEFAULT '',
  `dc_number` varchar(20) NOT NULL DEFAULT '',
  `item_code` varchar(10) NOT NULL DEFAULT '',
  `remark` varchar(256) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=51 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `client_order_prodcts`
--

LOCK TABLES `client_order_prodcts` WRITE;
/*!40000 ALTER TABLE `client_order_prodcts` DISABLE KEYS */;
INSERT INTO `client_order_prodcts` VALUES (1,1,2,'Product 1','',100.00,150.00,150.00,0.00,'No',0.00,0.00,0.00,'Batch-1','-',0,'10 Grm',0.010,'Kg','','','','',1,'2020-04-24'),(2,1,3,'Product 2','',500.00,200.00,200.00,0.00,'No',0.00,0.00,0.00,'-','-',0,'15 Grm',0.015,'Kg','','','','',1,'2020-04-24'),(3,2,2,'Product 1','',150.00,110.00,110.00,0.00,'No',0.00,0.00,0.00,'Batch-1','-',3,'10 Grm',0.010,'Kg','','','','',1,'2020-04-25'),(4,2,3,'Product 2','',200.00,160.00,160.00,0.00,'No',0.00,0.00,0.00,'-','-',4,'15 Grm',0.015,'Kg','','','','',1,'2020-04-25'),(5,3,2,'Product 1','',1.00,1.00,1.00,0.00,'No',0.00,0.00,0.00,'Batch-1','-',1,'1 Grm',0.001,'Kg','','','','',1,'2020-04-25'),(6,3,3,'Product 2','',2.00,2.00,2.00,0.00,'No',0.00,0.00,0.00,'Batch-2','-',2,'2 Grm',0.002,'Kg','','','','',1,'2020-04-25'),(10,4,3,'Product 2','',2.00,200.00,200.00,0.00,'No',0.00,0.00,0.00,'Batch-2','-',2,'2 Grm',0.002,'Kg','','','','',1,'2020-04-25'),(9,4,2,'Product 1','',1.00,100.00,100.00,0.00,'No',0.00,0.00,0.00,'Batch-1','-',1,'1 Grm',0.001,'Kg','','','','',1,'2020-04-25'),(11,4,4,'Product 3','',3.00,300.00,300.00,0.00,'No',0.00,0.00,0.00,'Batch-3','-',3,'10 Grm',0.010,'Kg','','','','',1,'2020-04-25'),(17,7,3,'Product 2','',100.00,200.00,200.00,0.00,'No',0.00,0.00,0.00,'Batch-2','-',0,'1 Lit X100 Btls =  5Box',0.000,'','','','','',1,'2020-05-04'),(16,7,2,'Product 1','',400.00,100.00,100.00,0.00,'No',9.00,9.00,0.00,'Batch-1','-',0,'40Kg X 10 Bags',0.000,'','','','','',1,'2020-05-04'),(25,8,145,'Pretilachlor 50% EC 1litre','',15.00,450.00,450.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'Packing Here -2',0.000,'','','','','',3,'2020-06-11'),(24,8,10,'Acephate 75% SP 1kg','',10.00,580.00,580.00,0.00,'No',0.00,0.00,18.00,'NA','-',0,'1Kg X 10 Bags',0.000,'','','','','',3,'2020-06-11'),(23,9,11,'Acephate 75% SP 500gm','',50.00,590.00,590.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'0.5Kg X 100 Pouch',0.000,'','','','','',3,'2020-06-11'),(22,9,10,'Acephate 75% SP 1kg','',10.00,580.00,580.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'1Kg X 10 Pouch',0.000,'','','','','',3,'2020-06-11'),(35,10,10,'Acephate 75% SP 1kg','',2.00,580.00,580.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'Packing Here -2',0.000,'','','','','',3,'2020-06-14'),(34,10,7,'2,4-D Ethyl Ester 38% EC 1liter','',2.00,250.00,250.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'1litX100 = 5Box',0.000,'','','','','',3,'2020-06-14'),(36,13,15,'Acetamiprid 20% SP 100gm','',10.00,155.00,155.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'Packing Here 2',0.000,'','','','','',1,'2020-06-18'),(37,13,12,'Acephate 75% SP 250gm','',20.00,150.00,150.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'NA',0.000,'','','','','',1,'2020-06-18'),(38,13,20,'Buprofezin 25% SC 1 litre','',30.00,455.00,455.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'Packing Here1',0.000,'','','','','',1,'2020-06-18'),(39,13,8,'2,4-D Ethyl Ester 38% EC 500ml','',40.00,260.00,260.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'Packing Here 2',0.000,'','','','','',1,'2020-06-18'),(45,14,13,'Product 3','',10.00,750.00,750.00,0.00,'No',9.00,9.00,0.00,'-','-',0,'Packing Here1',0.000,'','','','','',1,'2020-06-19'),(44,14,11,'Product 2','',5.00,590.00,590.00,0.00,'No',9.00,9.00,0.00,'-','-',0,'Packing Here 3',0.000,'','','','','',1,'2020-06-19'),(43,14,9,'Acetone -1','',1.00,270.00,270.00,0.00,'No',9.00,9.00,0.00,'-','-',0,'Packing Here 2',0.000,'','','','','',1,'2020-06-19'),(46,15,9,'Prouct 1','',100.00,270.00,270.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'20Kg Drum',0.000,'','','','','',1,'2020-06-19'),(47,15,12,'product 2','',50.00,600.00,600.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'50Lit Drum',0.000,'','','','','',1,'2020-06-19'),(48,15,13,'Product 3','',10.00,750.00,750.00,0.00,'No',0.00,0.00,18.00,'-','-',0,'10Kg Bag',0.000,'','','','','',1,'2020-06-19'),(49,16,10,'Acetone - MFG 2021 - Exp 2022','',100.00,250.00,250.00,0.00,'No',9.00,9.00,0.00,'-','-',0,'25 Kg X 4 Drums',0.000,'','','','','',3,'2020-06-19'),(50,16,12,'product 2 ','',50.00,600.00,600.00,0.00,'No',9.00,9.00,0.00,'-','-',0,'Packing Here -3',0.000,'','','','','',3,'2020-06-19');
/*!40000 ALTER TABLE `client_order_prodcts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `client_orders`
--

DROP TABLE IF EXISTS `client_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `client_orders` (
  `order_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_number` varchar(15) NOT NULL,
  `challan_number` varchar(30) NOT NULL,
  `invoice_number` varchar(30) NOT NULL,
  `custom_invoice` int(11) NOT NULL,
  `invoice_firm` int(11) NOT NULL DEFAULT '1' COMMENT 'order under firm',
  `comp_id` int(11) NOT NULL,
  `uid` int(11) NOT NULL,
  `contact_person` varchar(100) NOT NULL,
  `shipping_address` text NOT NULL,
  `billing_address` text NOT NULL,
  `gstin_number` varchar(40) NOT NULL DEFAULT '-',
  `state_code` int(2) NOT NULL DEFAULT '27',
  `discount` float(6,2) NOT NULL DEFAULT '0.00',
  `order_date` date NOT NULL,
  `order_bank` int(11) NOT NULL DEFAULT '0',
  `order_status` varchar(9) NOT NULL DEFAULT 'Pending' COMMENT 'Pending, Completed and Closed',
  `payment_reminder` date NOT NULL DEFAULT '0000-00-00',
  `po_ref` varchar(50) NOT NULL DEFAULT '',
  `po_date` date NOT NULL DEFAULT '0000-00-00',
  `party_challan_no` varchar(20) NOT NULL DEFAULT '',
  `party_challan_date` date NOT NULL DEFAULT '0000-00-00',
  `forwardingAmt` float(10,2) NOT NULL DEFAULT '0.00',
  `loadingAmt` float(7,2) NOT NULL DEFAULT '0.00',
  `vehicle_no` varchar(30) NOT NULL,
  `destination` varchar(100) NOT NULL,
  `transport_by` varchar(50) NOT NULL DEFAULT '',
  `docket_no` varchar(20) NOT NULL DEFAULT '',
  `order_type` enum('Tax','Cash','Proforma') NOT NULL DEFAULT 'Cash',
  `billing_type` varchar(50) NOT NULL DEFAULT 'Regular',
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  `finacial_year` varchar(7) NOT NULL,
  PRIMARY KEY (`order_id`,`comp_id`,`uid`),
  KEY `invoice_number` (`invoice_firm`),
  KEY `invoice_firm` (`invoice_firm`),
  KEY `comp_id` (`comp_id`),
  KEY `uid` (`uid`),
  KEY `order_status` (`order_status`),
  KEY `order_number` (`order_number`),
  KEY `order_type` (`order_type`),
  KEY `order_bank` (`order_bank`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `client_orders`
--

LOCK TABLES `client_orders` WRITE;
/*!40000 ALTER TABLE `client_orders` DISABLE KEYS */;
INSERT INTO `client_orders` VALUES (1,'GMO/19-20/699','GMO/19-20/D/699','GMO-699',0,1,2,1,'Pravin Sawant','Nashik','Nashik','GSTIN NUMBER HERE 2',28,0.00,'2020-04-24',1,'Completed','2020-04-30','-','0000-00-00','','0000-00-00',0.00,0.00,'BR15AW6072','Nasik','VRL','','Tax','',1,'2020-04-24','19-20'),(2,'GMO/19-20/700','GMO/19-20/D/700','GMO-700',0,1,1,1,'Pravin','Address','Address','GSTIN NUMBER HERE',10,0.00,'2020-04-25',1,'Pending','2020-04-29','-','0000-00-00','','0000-00-00',0.00,0.00,'','','','','Tax','',1,'2020-04-25','19-20'),(3,'GMO/19-20/701','GMO/19-20/D/701','GMO-701',0,1,1,1,'Pravin','Address','Address','GSTIN NUMBER HERE',2,0.00,'2020-04-25',1,'Pending','0000-00-00','-','0000-00-00','','0000-00-00',0.00,0.00,'','','','','Tax','',1,'2020-04-25','19-20'),(4,'GMO/19-20/702','GMO/19-20/D/702','GMO-702',0,1,1,1,'Pravin','Address','Address','GSTIN NUMBER HERE',28,0.00,'2020-04-25',1,'Pending','0000-00-00','-','0000-00-00','','0000-00-00',0.00,0.00,'','','','','Tax','',1,'2020-04-25','19-20'),(5,'RAJ/20-21/1','RAJ/20-21/D/1','RAJ-1',0,1,2,1,'Pravin Cash','Address line 1\r\nAddress ine 2\r\nAddress line 3','Address line 1\r\nAddress ine 2\r\nAddress line 3','GSTIN NUMBER HERE 2',10,0.00,'2020-05-04',1,'Closed','0000-00-00','PONUMBR','2020-05-13','','0000-00-00',0.00,0.00,'','','','','Tax','',1,'2020-05-04','20-21'),(6,'RAJ/20-21/2','RAJ/20-21/D/2','RAJ-2',0,1,2,1,'Pravin Cash','Address line 1\r\nAddress ine 2\r\nAddress line 3','Address line 1\r\nAddress ine 2\r\nAddress line 3','GSTIN NUMBER HERE 2',10,0.00,'2020-05-04',1,'Closed','0000-00-00','PONUMBR','2020-05-13','','0000-00-00',0.00,0.00,'','','','','Tax','',1,'2020-05-04','20-21'),(7,'RAJ/20-21/3','RAJ/20-21/D/3','RAJ-3',0,1,2,1,'Pravin Cash','Address line 1\r\nAddress ine 2\r\nAddress line 3','Address line 1\r\nAddress ine 2\r\nAddress line 3','GSTIN NUMBER HERE 2',10,0.00,'2020-05-04',1,'Completed','0000-00-00','-','0000-00-00','','0000-00-00',0.00,0.00,'BR15AW6072','Patna','VRL','','Tax','',1,'2020-05-04','20-21'),(8,'STAR/20-21/1','STAR/20-21/D/1','STAR-1',0,1,1,3,'Pravin','Address Line 1\r\nAddress Line 2\r\nAddress Line 3','Address Line 1\r\nAddress Line 2\r\nAddress Line 3','GSTIN NUMBER HERE',27,0.00,'2020-06-11',1,'Completed','0000-00-00','-','0000-00-00','','0000-00-00',0.00,0.00,'MH15AW6072','Destination','VRL','','Tax','',3,'2020-06-11','20-21'),(9,'STAR/20-21/2','STAR/20-21/D/2','STAR-2',0,1,1,3,'Pravin','Address','Address','GSTIN NUMBER HERE',27,0.00,'2020-06-11',1,'Completed','0000-00-00','-','0000-00-00','','0000-00-00',0.00,0.00,'--','Nasik','VRL','','Tax','',3,'2020-06-11','20-21'),(10,'STAR/20-21/3','STAR/20-21/D/3','STAR-3',0,1,3,4,'Pravin','Address line 1\r\nAddress line 2\r\nAddress line 3','Address line 1\r\nAddress line 2\r\nAddress line 3','GSTIN NUMBER HERE',27,0.00,'2020-06-14',1,'Completed','0000-00-00','-','0000-00-00','','0000-00-00',500.00,0.00,'NA','Nasik','VRL','','Tax','',3,'2020-06-14','20-21'),(11,'//','//D/','//',0,0,3,1,'Conatct 3','Address line 1\r\nAddress line 2\r\nAddress line 3','Address line 1\r\nAddress line 2\r\nAddress line 3','GSTIN NUMBER HERE 3',27,0.00,'2020-06-18',1,'Pending','0000-00-00','STAR/20-21/SO/4','2020-06-18','','0000-00-00',0.00,0.00,'','','','','Tax','Regular',1,'2020-06-18',''),(12,'STAR/20-21/4','STAR/20-21/D/4','STAR/20-21/4',0,1,3,1,'Conatct 3','Address line 1\r\nAddress line 2\r\nAddress line 3','Address line 1\r\nAddress line 2\r\nAddress line 3','GSTIN NUMBER HERE 3',27,0.00,'2020-06-18',1,'Pending','0000-00-00','STAR/20-21/SO/4','2020-06-18','','0000-00-00',0.00,0.00,'','','','','Tax','Regular',1,'2020-06-18',''),(13,'STAR/20-21/5','STAR/20-21/D/5','STAR/20-21/5',0,1,3,1,'Conatct 3','Address line 1\r\nAddress line 2\r\nAddress line 3','Address line 1\r\nAddress line 2\r\nAddress line 3','GSTIN NUMBER HERE 3',27,0.00,'2020-06-18',1,'Completed','0000-00-00','STAR/20-21/SO/4','2020-06-18','','0000-00-00',0.00,0.00,'NA','Nasik','VRL','','Tax','Regular',1,'2020-06-18',''),(14,'MB/20-21/1','MB/20-21/D/1','MB-1',0,1,1,1,'Pravin','Address','Address','GSTIN NUMBER HERE',27,0.00,'2020-06-19',1,'Completed','0000-00-00','','0000-00-00','','0000-00-00',0.00,0.00,'NA','Nasik','VRL','','Tax','',1,'2020-06-19','20-21'),(15,'MB/20-21/2','MB/20-21/DC/2','MB/20-21/MB/2',0,1,3,1,'Conatct 3','Address line 1\r\nAddress line 2\r\nAddress line 3','Address line 1\r\nAddress line 2\r\nAddress line 3','GSTIN NUMBER HERE 3',33,0.00,'2020-06-19',1,'Completed','0000-00-00','','0000-00-00','','0000-00-00',100.00,0.00,'NA','Destination','VRL','','Tax','',1,'2020-06-19','20-21'),(16,'MB/20-21/3','MB/20-21/DC/3','MB/20-21/MB/3',0,1,1,3,'Pravin','Address','Address','GSTIN NUMBER HERE',27,0.00,'2020-06-19',1,'Pending','0000-00-00','','0000-00-00','','0000-00-00',0.00,0.00,'','','','','Tax','',3,'2020-06-19','20-21');
/*!40000 ALTER TABLE `client_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `client_quotation`
--

DROP TABLE IF EXISTS `client_quotation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `client_quotation` (
  `quotation_id` int(11) NOT NULL AUTO_INCREMENT,
  `quotation_number` varchar(17) NOT NULL,
  `invoice_firm` int(11) NOT NULL DEFAULT '1' COMMENT 'order under firm',
  `comp_id` int(11) NOT NULL,
  `manufacturer_id` int(11) NOT NULL DEFAULT '0',
  `uid` int(11) NOT NULL,
  `contact_person` varchar(100) NOT NULL,
  `shipping_address` text NOT NULL,
  `billing_address` text NOT NULL,
  `state_code` int(2) NOT NULL DEFAULT '27',
  `order_bank` int(2) NOT NULL DEFAULT '0',
  `forwardingAmt` float(10,2) NOT NULL DEFAULT '0.00',
  `discount` float(6,2) NOT NULL DEFAULT '0.00',
  `quotation_date` date NOT NULL,
  `quotation_status` varchar(9) NOT NULL DEFAULT 'Pending' COMMENT 'Pending, Completed and Closed',
  `order_type` enum('Tax','Labour') NOT NULL DEFAULT 'Labour',
  `billing_type` varchar(50) NOT NULL DEFAULT 'Regular',
  `po_ref` varchar(50) NOT NULL,
  `po_date` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`quotation_id`,`comp_id`,`uid`),
  KEY `invoice_number` (`invoice_firm`),
  KEY `invoice_firm` (`invoice_firm`),
  KEY `comp_id` (`comp_id`),
  KEY `uid` (`uid`),
  KEY `order_status` (`quotation_status`),
  KEY `order_number` (`quotation_number`),
  KEY `order_type` (`order_type`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `client_quotation`
--

LOCK TABLES `client_quotation` WRITE;
/*!40000 ALTER TABLE `client_quotation` DISABLE KEYS */;
INSERT INTO `client_quotation` VALUES (1,'GMO/19-20/QT/1',1,1,0,1,'Pravin','Address','Address',27,1,0.00,0.00,'2020-04-25','Completed','Tax','Regular','','0000-00-00',1,'2020-04-25'),(2,'GMO/19-20/QT/2',1,1,0,1,'Pravin','Address','Address',27,1,0.00,0.00,'2020-04-25','Completed','Tax','Regular','','0000-00-00',1,'2020-04-25'),(3,'RAJ/20-21/QT/1',1,3,0,1,'Pravin Testing','Address Line 1\r\nAddress Line 2\r\nAddress Line 3','Address Line 1\r\nAddress Line 2\r\nAddress Line 3',10,1,500.00,0.00,'2020-05-05','Completed','Tax','Regular','','0000-00-00',1,'2020-05-05'),(4,'RAJ/20-21/QT/2',1,1,0,1,'Pravin','Address','Address',27,1,100.00,0.00,'2020-06-02','Completed','Tax','Regular','','0000-00-00',1,'2020-06-02'),(5,'STAR/20-21/QT/1',1,1,0,3,'Pravin','Address 1\r\nAddress 2\r\nAddress 3','Address 1\r\nAddress 2\r\nAddress 3',27,1,0.00,0.00,'2020-06-11','Completed','Tax','Regular','','0000-00-00',3,'2020-06-11'),(6,'STAR/20-21/QT/2',1,1,0,3,'Pravin','Address 1\r\nAddress 2\r\nAddress 3','Address 1\r\nAddress 2\r\nAddress 3',27,1,500.00,0.00,'2020-06-14','Completed','Tax','Regular','POREF','2020-06-11',3,'2020-06-14'),(7,'MB/20-21/QT/1',1,3,0,1,'Conatct 3','Address line 1\r\nAddress line 2\r\nAddress line 3','Address line 1\r\nAddress line 2\r\nAddress line 3',18,1,450.00,0.00,'2020-06-19','Completed','Tax','Regular','','0000-00-00',1,'2020-06-19');
/*!40000 ALTER TABLE `client_quotation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `client_quotation_prodcts`
--

DROP TABLE IF EXISTS `client_quotation_prodcts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `client_quotation_prodcts` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'This will be used in challen table as ref_id',
  `quotation_id` int(11) NOT NULL,
  `quotation_pid` int(11) NOT NULL DEFAULT '0',
  `prod_ref_name` varchar(256) NOT NULL,
  `quotation_qty` float(10,2) NOT NULL,
  `quotation_rate` float(10,2) NOT NULL,
  `with_gst_amt` float(7,2) NOT NULL DEFAULT '0.00',
  `description` varchar(256) NOT NULL,
  `tax_free` enum('Yes','No') NOT NULL DEFAULT 'No',
  `sgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `cgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `igst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `pu_id` int(4) NOT NULL,
  `batch_no` varchar(30) NOT NULL,
  `packing` varchar(256) NOT NULL,
  `pu_conversion` decimal(7,3) NOT NULL,
  `mstr_unit` varchar(4) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`id`),
  KEY `order_id` (`quotation_id`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `client_quotation_prodcts`
--

LOCK TABLES `client_quotation_prodcts` WRITE;
/*!40000 ALTER TABLE `client_quotation_prodcts` DISABLE KEYS */;
INSERT INTO `client_quotation_prodcts` VALUES (1,1,4,'Product 3',1.00,100.00,100.00,'-','No',0.00,0.00,0.00,0,'QTbatch-1','15 Grm',0.015,'Kg',1,'2020-04-25'),(2,1,7,'Product 6',2.00,200.00,200.00,'-','No',0.00,0.00,0.00,0,'-','50 Grm',0.050,'Kg',1,'2020-04-25'),(6,2,3,'Product 2',200.00,200.00,0.00,'-','No',0.00,0.00,0.00,3,'Batch-2','10 Grm',0.010,'Kg',1,'2020-04-25'),(5,2,2,'Product 1',100.00,150.00,0.00,'-','No',0.00,0.00,0.00,4,'Batch-1','15 Grm',0.015,'Kg',1,'2020-04-25'),(7,2,4,'Product 3',300.00,300.00,0.00,'-','No',0.00,0.00,0.00,4,'Batch-3','15 Grm',0.015,'Kg',1,'2020-04-25'),(17,3,4,'Product 3',500.00,150.00,0.00,'-','No',9.00,9.00,0.00,0,'NA','40Kg X 10 ',0.000,'',1,'2020-05-05'),(16,3,2,'Product 1',700.00,300.00,0.00,'-','No',9.00,9.00,0.00,0,'NA','1kgx20pkt',0.000,'',1,'2020-05-05'),(18,3,3,'Product 2',600.00,200.00,0.00,'-','No',9.00,9.00,0.00,0,'NA','50Kg X 10 ',0.000,'',1,'2020-05-05'),(19,4,2,'Product 1',100.00,150.00,150.00,'-','No',0.00,0.00,18.00,0,'NA','40Kg X 10 ',0.000,'',1,'2020-06-02'),(20,5,7,'2,4-D Ethyl Ester 38% EC 1liter',5.00,250.00,250.00,'-','No',0.00,0.00,18.00,0,'-','NA',0.000,'',3,'2020-06-11'),(21,5,11,'Acephate 75% SP 500gm',10.00,590.00,590.00,'-','No',0.00,0.00,18.00,0,'-','NA1',0.000,'',3,'2020-06-11'),(27,6,11,'Acephate 75% SP 500gm',100.00,590.00,0.00,'-','No',0.00,0.00,18.00,0,'-','Packing He',0.000,'',3,'2020-06-14'),(26,6,10,'Acephate 75% SP 1kg',150.00,580.00,0.00,'-','No',0.00,0.00,18.00,0,'-','Packing He',0.000,'',3,'2020-06-14'),(28,7,9,'2,4-D Ethyl Ester 38% EC 250ml',100.00,270.00,270.00,'-','No',0.00,0.00,18.00,0,'-','20Kg Drum',0.000,'',1,'2020-06-19'),(29,7,11,'Acephate 75% SP 500gm',50.00,590.00,590.00,'-','No',0.00,0.00,18.00,0,'-','50Kg Drum',0.000,'',1,'2020-06-19');
/*!40000 ALTER TABLE `client_quotation_prodcts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `clients`
--

DROP TABLE IF EXISTS `clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `clients` (
  `comp_id` int(11) NOT NULL AUTO_INCREMENT,
  `comp_name` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `corp_country` varchar(150) COLLATE latin1_general_ci NOT NULL DEFAULT 'India',
  `corp_state` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `corp_district` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `corp_city` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `corp_office` tinytext COLLATE latin1_general_ci NOT NULL,
  `corp_address` tinytext COLLATE latin1_general_ci NOT NULL,
  `corp_phone` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `corp_email` varchar(256) COLLATE latin1_general_ci NOT NULL,
  `corp_website` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `primary_contact` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `primary_phone` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `primary_mobile` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `primary_email` varchar(256) COLLATE latin1_general_ci NOT NULL,
  `primary_fax` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `primary_country` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `primary_district` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `state` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `city` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `plant_address` tinytext COLLATE latin1_general_ci NOT NULL,
  `shipping_address` text COLLATE latin1_general_ci NOT NULL,
  `plant_phone` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `plant_email` varchar(256) COLLATE latin1_general_ci NOT NULL,
  `plant_conperson` varchar(50) COLLATE latin1_general_ci NOT NULL,
  `plant_fax` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `plant_country` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `plant_state` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `plant_district` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `plant_city` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `tin_num` varchar(20) COLLATE latin1_general_ci NOT NULL,
  `handling_person` int(11) NOT NULL,
  `client_type` enum('Client','Lead') COLLATE latin1_general_ci NOT NULL DEFAULT 'Client',
  `status` enum('Active','In-Active') COLLATE latin1_general_ci NOT NULL DEFAULT 'Active',
  `vat_no` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `gstin_num` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `cst_no` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `excise_no` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `pan_no` varchar(20) COLLATE latin1_general_ci NOT NULL,
  `notes` text COLLATE latin1_general_ci NOT NULL,
  `other_information` text COLLATE latin1_general_ci NOT NULL,
  `credit_limit` float(10,2) NOT NULL,
  `client_source` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `client_potential` float(10,2) NOT NULL,
  `client_rating` int(1) NOT NULL,
  `product_rating` int(1) NOT NULL,
  `client_rating_reason` text COLLATE latin1_general_ci NOT NULL,
  `product_rating_reason` text COLLATE latin1_general_ci NOT NULL,
  `interested_crops` text COLLATE latin1_general_ci NOT NULL,
  `work_area` text COLLATE latin1_general_ci NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  `account_number` varchar(30) COLLATE latin1_general_ci NOT NULL,
  `account_name` varchar(150) COLLATE latin1_general_ci NOT NULL,
  `bank_name` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `bank_branch` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `ifsc_code` varchar(15) COLLATE latin1_general_ci NOT NULL,
  `dob` date NOT NULL COMMENT 'Client''s date of Birth',
  PRIMARY KEY (`comp_id`),
  KEY `tin_num` (`tin_num`),
  KEY `handling_person` (`handling_person`),
  KEY `updated_by` (`updated_by`),
  KEY `client_type` (`client_type`)
) ENGINE=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `clients`
--

LOCK TABLES `clients` WRITE;
/*!40000 ALTER TABLE `clients` DISABLE KEYS */;
INSERT INTO `clients` VALUES (1,'Company Name 1','India','','','','','','','','','Pravin','1234567890','9960490859','email@eail.com','','','','','Nasik','','Address','','','','','','','','','',4,'Client','Active','','GSTIN NUMBER HERE','','','','','',0.00,'',0.00,0,0,'','','','',3,'2020-02-29','','','','','','0000-00-00'),(2,'Company Name 2','India','','','','','','','','','','','','','','','','','','','','','','','','','','','','',4,'Client','Active','','GSTIN NUMBER HERE 2','','','','','',0.00,'',0.00,0,0,'','','','',0,'0000-00-00','','','','','','0000-00-00'),(3,'Company Name 3','India','','','','','','','','','Conatct 3','7972131290','','','','','','','Nashik','','Address line 1\r\nAddress line 2\r\nAddress line 3','','','','','','','','','',4,'Client','Active','','GSTIN NUMBER HERE 3','','','','','',0.00,'',0.00,0,0,'','','','',1,'2020-06-18','','','','','','0000-00-00'),(4,'Company Name 4','India','','','','','','','','','','','','','','','','','','','','','','','','','','','','',5,'Client','Active','','GSTIN NUMBER HERE 4','','','','','',0.00,'',0.00,0,0,'','','','',0,'0000-00-00','','','','','','0000-00-00'),(48,'Lead Name 1','India','','','','','','','','','Mr ABCD','7896541230','1234567890','saw@saw.com','','','','','Nashik','','Address line 1\r\nAddress line 2\r\nAddress line 3','','','','','','','','','',4,'Lead','Active','','NA','','','','Notes1','Info',0.00,'',0.00,0,0,'','','','',4,'2020-06-16','','','','','','0000-00-00');
/*!40000 ALTER TABLE `clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `comp_communication`
--

DROP TABLE IF EXISTS `comp_communication`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comp_communication` (
  `com_id` int(11) NOT NULL AUTO_INCREMENT,
  `enq_id` int(11) NOT NULL DEFAULT '0',
  `call_by` varchar(6) COLLATE latin1_general_ci NOT NULL DEFAULT 'Phone',
  `user_id` int(11) NOT NULL,
  `user_name` varchar(30) COLLATE latin1_general_ci NOT NULL,
  `client_id` int(11) NOT NULL,
  `comment` tinytext COLLATE latin1_general_ci NOT NULL,
  `ndate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `com_date` datetime NOT NULL,
  `ntime` varchar(10) COLLATE latin1_general_ci NOT NULL,
  PRIMARY KEY (`com_id`),
  KEY `enq_id` (`enq_id`,`call_by`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `comp_communication`
--

LOCK TABLES `comp_communication` WRITE;
/*!40000 ALTER TABLE `comp_communication` DISABLE KEYS */;
INSERT INTO `comp_communication` VALUES (1,0,'Phone',1,'Fname Admin',3,'Test comment','2019-05-02 06:05:00','2019-05-01 17:02:00',''),(2,0,'Phone',1,'Fname Admin',7,'askrd for pay','2019-06-12 10:50:00','2019-06-01 16:09:34',''),(3,0,'Phone',1,'Fname Admin',1468,'call on friday','2019-09-06 11:45:00','2019-09-03 10:56:10',''),(4,0,'Phone',1,'Fname Admin',1468,'tesy','2019-09-03 12:45:00','2019-09-03 10:57:43',''),(5,0,'Phone',1,'Admin ',1,'Testing','2020-05-06 10:30:00','2020-05-05 16:27:08',''),(6,0,'Phone',1,'Admin ',1,'New testing','2020-05-05 15:30:00','2020-05-05 16:27:46',''),(7,0,'Phone',4,'Sales User1',48,'test Comment','2020-06-16 13:25:00','2020-06-16 08:42:53',''),(8,0,'Phone',5,'Sales 2',4,'This is test','2020-06-16 17:30:00','2020-06-16 15:37:15',''),(9,0,'Phone',3,'Super Admin',1,'test comment','2020-06-19 18:30:00','2020-06-19 13:33:41',''),(10,0,'Phone',4,'Sales User1',48,'Test call','2020-06-22 13:50:00','2020-06-19 13:55:44','');
/*!40000 ALTER TABLE `comp_communication` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `company_firm_banks`
--

DROP TABLE IF EXISTS `company_firm_banks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `company_firm_banks` (
  `bank_id` int(11) NOT NULL AUTO_INCREMENT,
  `account_name` varchar(250) NOT NULL,
  `firm_id` int(11) NOT NULL,
  `bank_name` varchar(250) NOT NULL,
  `bank_address` tinytext NOT NULL,
  `ifsc_code` varchar(50) NOT NULL,
  `account_no` varchar(100) NOT NULL,
  `micr_code` varchar(100) NOT NULL,
  `status` enum('Active','In-Active') NOT NULL DEFAULT 'Active',
  PRIMARY KEY (`bank_id`),
  KEY `firm_id` (`firm_id`,`account_no`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `company_firm_banks`
--

LOCK TABLES `company_firm_banks` WRITE;
/*!40000 ALTER TABLE `company_firm_banks` DISABLE KEYS */;
INSERT INTO `company_firm_banks` VALUES (1,'STAR CHEMICALS',1,'ICICI','New C.G. Road','ICIC0000625','062505500168','','Active');
/*!40000 ALTER TABLE `company_firm_banks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `company_firms`
--

DROP TABLE IF EXISTS `company_firms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `company_firms` (
  `firm_id` int(11) NOT NULL AUTO_INCREMENT,
  `firm_name` varchar(100) NOT NULL,
  `firm_code` varchar(5) NOT NULL,
  `current_year` varchar(7) NOT NULL,
  `current_challan` int(11) NOT NULL,
  `current_invoice` int(11) NOT NULL,
  `credit_number` int(11) NOT NULL,
  `debit_number` int(11) NOT NULL,
  `cash_invoice_no` int(11) NOT NULL DEFAULT '0',
  `lot_no` int(11) NOT NULL DEFAULT '0',
  `material_inward_no` int(11) NOT NULL DEFAULT '0',
  `order_id` int(11) NOT NULL,
  `quotation_id` int(11) NOT NULL,
  `spo_number` int(11) NOT NULL,
  `sales_order_id` int(11) NOT NULL,
  `po_number` int(11) NOT NULL DEFAULT '0',
  `vat_num` varchar(20) NOT NULL,
  `cst_num` varchar(20) NOT NULL,
  `excise_num` varchar(40) NOT NULL,
  `gst_num` varchar(15) NOT NULL,
  `state_code` int(11) NOT NULL DEFAULT '0',
  `state_name` varchar(15) NOT NULL,
  `firm_address` text NOT NULL,
  `firm_email` varchar(150) NOT NULL,
  `firm_mobile` varchar(50) NOT NULL,
  `firm_jurisdiction` varchar(50) NOT NULL,
  `logo_image` varchar(30) NOT NULL,
  `status` enum('Active','In-Active') NOT NULL DEFAULT 'Active',
  `parent_firm` int(11) NOT NULL,
  `disply_name` varchar(256) NOT NULL,
  `asso_client_id` int(11) NOT NULL,
  `asso_supplier_id` int(11) NOT NULL,
  PRIMARY KEY (`firm_id`),
  KEY `current_excise` (`gst_num`),
  KEY `status` (`status`),
  KEY `parent_firm` (`parent_firm`,`asso_client_id`,`asso_supplier_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `company_firms`
--

LOCK TABLES `company_firms` WRITE;
/*!40000 ALTER TABLE `company_firms` DISABLE KEYS */;
INSERT INTO `company_firms` VALUES (1,'Manomay Biochem','MB','20-21',3,3,0,0,0,0,0,3,1,0,1,0,'-','-','-','27AYIPP6729P1ZG',27,'Maharashtra','FLAT NO-10, GOKULDHAM RESIDENCY AUDUMBER NAGAR, PANCHAVATI, NASHIK-422003','info@manomaybiochem.com','+91 9890831870','Nashik','logo.jpg','Active',1,'MANOMAY BIOCHEM',1,1);
/*!40000 ALTER TABLE `company_firms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `credit_note`
--

DROP TABLE IF EXISTS `credit_note`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `credit_note` (
  `credit_note_id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_id` int(11) NOT NULL,
  `credit_number` varchar(250) NOT NULL,
  `invoice_number` varchar(30) NOT NULL,
  `debit_number` varchar(250) NOT NULL,
  `note_date` date NOT NULL,
  `comp_id` int(11) NOT NULL,
  `supl_id` int(11) NOT NULL,
  `firm_id` int(11) NOT NULL,
  `state_code` int(2) NOT NULL,
  `invoice_date` date NOT NULL,
  `note_status` varchar(9) NOT NULL DEFAULT 'Pending',
  `created_by` int(11) NOT NULL,
  `created_on` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`credit_note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_note`
--

LOCK TABLES `credit_note` WRITE;
/*!40000 ALTER TABLE `credit_note` DISABLE KEYS */;
INSERT INTO `credit_note` VALUES (1,3,'GMO/19-20/36','ABC-2','','2020-04-25',1,0,1,27,'2020-04-15','Completed',1,'2020-04-25',1,'2020-04-25'),(2,5,'RAJ/20-21/1','241-1','','2020-05-05',3,0,1,27,'2020-05-05','Completed',1,'2020-05-05',1,'2020-05-05'),(3,7,'RAJ/20-21/2','ALH/18-19/577','','2020-06-02',1,0,1,27,'2020-06-02','Completed',1,'2020-06-02',1,'2020-06-02');
/*!40000 ALTER TABLE `credit_note` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `credit_note_product`
--

DROP TABLE IF EXISTS `credit_note_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `credit_note_product` (
  `credit_prod_id` int(11) NOT NULL AUTO_INCREMENT,
  `credit_note_id` int(11) NOT NULL,
  `pid` int(11) NOT NULL,
  `prod_ref_name` varchar(250) NOT NULL,
  `order_qty` float(10,2) NOT NULL,
  `order_rate` float(10,2) NOT NULL,
  `with_gst_amt` float(10,2) NOT NULL,
  `discount_per` float(5,2) NOT NULL,
  `sgst_per` float(4,2) NOT NULL,
  `cgst_per` float(4,2) NOT NULL,
  `igst_per` float(4,2) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`credit_prod_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_note_product`
--

LOCK TABLES `credit_note_product` WRITE;
/*!40000 ALTER TABLE `credit_note_product` DISABLE KEYS */;
INSERT INTO `credit_note_product` VALUES (6,1,3,'Product 2',100.00,150.00,150.00,0.00,0.00,0.00,0.00,1,'2020-04-25'),(7,1,4,'Product 3',150.00,200.00,200.00,0.00,0.00,0.00,0.00,1,'2020-04-25'),(8,1,2,'Product 1',50.00,100.00,100.00,0.00,0.00,0.00,0.00,1,'2020-04-25'),(9,2,2,'Product 1',1000.00,150.00,150.00,0.00,0.00,0.00,18.00,1,'2020-05-05'),(11,3,2,'Product 1',100.00,150.00,150.00,0.00,0.00,0.00,18.00,1,'2020-06-02'),(12,3,6,'Product 5',50.00,100.00,100.00,0.00,0.00,0.00,18.00,1,'2020-06-02');
/*!40000 ALTER TABLE `credit_note_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `debit_note`
--

DROP TABLE IF EXISTS `debit_note`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `debit_note` (
  `debit_note_id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_id` int(11) NOT NULL,
  `debit_number` varchar(20) NOT NULL,
  `invoice_number` varchar(30) NOT NULL,
  `note_date` date NOT NULL,
  `supl_id` int(11) NOT NULL,
  `firm_id` int(11) NOT NULL,
  `state_code` int(11) NOT NULL,
  `invoice_date` date NOT NULL,
  `note_status` enum('Pending','Completed','Closed') NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_on` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`debit_note_id`),
  KEY `invoice_date` (`invoice_date`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `debit_note`
--

LOCK TABLES `debit_note` WRITE;
/*!40000 ALTER TABLE `debit_note` DISABLE KEYS */;
INSERT INTO `debit_note` VALUES (1,6,'RAJ/20-21/1','ABC-2','2020-05-05',2,1,27,'2020-04-28','Completed',1,'2020-05-05',1,'2020-05-05'),(2,8,'RAJ/20-21/2','19-20/LC/2','2020-06-02',2,1,27,'2020-06-02','Completed',1,'2020-06-02',1,'2020-06-02');
/*!40000 ALTER TABLE `debit_note` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `debit_note_product`
--

DROP TABLE IF EXISTS `debit_note_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `debit_note_product` (
  `debit_prod_id` int(11) NOT NULL AUTO_INCREMENT,
  `debit_note_id` int(11) NOT NULL,
  `pid` int(11) NOT NULL,
  `prod_ref_name` varchar(256) NOT NULL,
  `order_qty` float(10,2) NOT NULL,
  `order_rate` float(10,2) NOT NULL,
  `with_gst_amt` float(10,2) NOT NULL,
  `discount_per` float(5,2) NOT NULL,
  `sgst_per` float(4,2) NOT NULL,
  `cgst_per` float(4,2) NOT NULL,
  `igst_per` float(4,2) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`debit_prod_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `debit_note_product`
--

LOCK TABLES `debit_note_product` WRITE;
/*!40000 ALTER TABLE `debit_note_product` DISABLE KEYS */;
INSERT INTO `debit_note_product` VALUES (1,1,3,'Product 2',100.00,120.00,120.00,0.00,0.00,0.00,18.00,1,'2020-05-05'),(2,1,5,'Product 4',50.00,130.00,130.00,0.00,0.00,0.00,18.00,1,'2020-05-05'),(3,2,3,'Product 2',10.00,150.00,150.00,0.00,0.00,0.00,18.00,1,'2020-06-02'),(4,2,5,'Product 4',5.00,200.00,200.00,0.00,0.00,0.00,18.00,1,'2020-06-02');
/*!40000 ALTER TABLE `debit_note_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `delivery_challan`
--

DROP TABLE IF EXISTS `delivery_challan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `delivery_challan` (
  `challan_id` int(11) NOT NULL AUTO_INCREMENT,
  `supplier_id` int(11) NOT NULL,
  `billing_address` text NOT NULL,
  `gstin_num` varchar(250) NOT NULL,
  `challan_date` date NOT NULL,
  `invoice_firm` int(11) NOT NULL,
  `state_code` int(2) NOT NULL DEFAULT '27',
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`challan_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `delivery_challan`
--

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

--
-- Table structure for table `delivery_challan_product`
--

DROP TABLE IF EXISTS `delivery_challan_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `delivery_challan_product` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `challan_id` int(11) NOT NULL,
  `product_name` varchar(250) NOT NULL,
  `processing` text NOT NULL,
  `qty` float(10,2) NOT NULL,
  `hsn_code` varchar(10) NOT NULL,
  `rate` decimal(7,2) NOT NULL,
  `sgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `cgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `igst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `delivery_challan_product`
--

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

--
-- Table structure for table `employee_attendance`
--

DROP TABLE IF EXISTS `employee_attendance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_attendance` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `emp_id` int(11) NOT NULL,
  `in_time` time NOT NULL,
  `out_time` time NOT NULL,
  `atn_date` date NOT NULL,
  PRIMARY KEY (`id`),
  KEY `emp_id` (`emp_id`,`atn_date`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_attendance`
--

LOCK TABLES `employee_attendance` WRITE;
/*!40000 ALTER TABLE `employee_attendance` DISABLE KEYS */;
INSERT INTO `employee_attendance` VALUES (1,2,'09:30:00','18:30:00','2019-01-01'),(2,1,'09:45:00','19:00:00','2019-01-01');
/*!40000 ALTER TABLE `employee_attendance` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `employee_salary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_salary` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `emp_id` int(11) NOT NULL,
  `for_month` varchar(100) NOT NULL,
  `basic_pay` decimal(7,2) NOT NULL,
  `HRA` decimal(7,2) NOT NULL,
  `conveyance` decimal(7,2) NOT NULL,
  `veriable_pay` decimal(7,2) NOT NULL,
  `DA` decimal(7,2) NOT NULL,
  `expenses` decimal(7,2) NOT NULL,
  `PT` decimal(7,2) NOT NULL,
  `PF` decimal(7,2) NOT NULL,
  `advance_ded` decimal(7,2) NOT NULL,
  `late_mark` decimal(7,2) NOT NULL,
  `final_salary` decimal(7,2) NOT NULL,
  `firm_id` int(11) NOT NULL DEFAULT '1',
  `created_by` int(11) NOT NULL,
  `created_on` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  `status` enum('Pending','Completed') NOT NULL DEFAULT 'Pending',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `employee_salary` WRITE;
/*!40000 ALTER TABLE `employee_salary` DISABLE KEYS */;
INSERT INTO `employee_salary` VALUES (1,1,'Jan-2020',5000.00,1200.00,0.00,0.00,500.00,2500.00,200.00,200.00,0.00,0.00,0.00,1,1,'2020-02-29',1,'2020-02-29','Pending'),(2,2,'Jan-2020',5000.00,0.00,0.00,0.00,0.00,1000.00,0.00,0.00,0.00,0.00,0.00,1,1,'2020-02-29',1,'2020-02-29','Completed');
/*!40000 ALTER TABLE `employee_salary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `employees`
--

DROP TABLE IF EXISTS `employees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employees` (
  `emp_id` int(4) NOT NULL AUTO_INCREMENT,
  `emp_name` varchar(50) NOT NULL,
  `emp_mobile` varchar(25) NOT NULL,
  `emp_address` text NOT NULL,
  `firm_id` int(3) NOT NULL,
  `pan_no` varchar(20) NOT NULL,
  `date_of_joining` date NOT NULL,
  `basic_pay` decimal(7,2) NOT NULL,
  `HRA` decimal(7,2) NOT NULL,
  `conveyance` decimal(7,2) NOT NULL,
  `veriable_pay` decimal(7,2) NOT NULL,
  `DA` decimal(7,2) NOT NULL,
  `expenses` decimal(7,2) NOT NULL,
  `PT` decimal(7,2) NOT NULL,
  `PF` decimal(7,2) NOT NULL,
  `emp_status` enum('Active','In-Active') NOT NULL DEFAULT 'Active',
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`emp_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employees`
--

LOCK TABLES `employees` WRITE;
/*!40000 ALTER TABLE `employees` DISABLE KEYS */;
INSERT INTO `employees` VALUES (1,'abc pqr','7125896321','Ozar',0,'','0000-00-00',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'Active',1,'2017-12-26'),(2,'Test','12313113','Nasik',0,'-','2019-01-01',5000.00,0.00,0.00,0.00,0.00,1000.00,0.00,0.00,'Active',1,'2019-01-11');
/*!40000 ALTER TABLE `employees` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `expense_details`
--

DROP TABLE IF EXISTS `expense_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expense_details` (
  `expense_id` int(11) NOT NULL AUTO_INCREMENT,
  `expense_date` date NOT NULL,
  `expense_title` varchar(150) NOT NULL,
  `expense_desc` tinytext NOT NULL,
  `expense_amount` float(10,2) NOT NULL,
  `firm_id` int(11) NOT NULL DEFAULT '1',
  `head_id` int(11) NOT NULL,
  `voucher_type` enum('Payment','Receipt') NOT NULL DEFAULT 'Payment',
  `updated_by` int(3) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`expense_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense_details`
--

LOCK TABLES `expense_details` WRITE;
/*!40000 ALTER TABLE `expense_details` DISABLE KEYS */;
INSERT INTO `expense_details` VALUES (2,'2020-02-29','Test Pravin','Desc',2500.00,4,9,'Payment',1,'2020-02-29');
/*!40000 ALTER TABLE `expense_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `expense_details_bkp`
--

DROP TABLE IF EXISTS `expense_details_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expense_details_bkp` (
  `expense_id` int(11) NOT NULL AUTO_INCREMENT,
  `expense_date` date NOT NULL,
  `expense_title` varchar(150) NOT NULL,
  `expense_desc` tinytext NOT NULL,
  `expense_amount` float(10,2) NOT NULL,
  `voucher_type` enum('Payment','Receipt') NOT NULL DEFAULT 'Payment',
  `updated_by` int(3) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`expense_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense_details_bkp`
--

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

--
-- Table structure for table `gst_state_codes`
--

DROP TABLE IF EXISTS `gst_state_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gst_state_codes` (
  `state_id` int(3) NOT NULL AUTO_INCREMENT,
  `state_name` varchar(100) NOT NULL,
  `state_code` int(3) NOT NULL,
  PRIMARY KEY (`state_id`),
  KEY `state_name` (`state_name`,`state_code`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gst_state_codes`
--

LOCK TABLES `gst_state_codes` WRITE;
/*!40000 ALTER TABLE `gst_state_codes` DISABLE KEYS */;
INSERT INTO `gst_state_codes` VALUES (35,'Andaman and Nicobar Islands',35),(28,'Andhra Pradesh',28),(12,'Arunachal Pradesh',12),(18,'Assam',18),(10,'Bihar',10),(4,'Chandigarh',4),(22,'Chhattisgarh',22),(26,'Dadra and Nagar Haveli',26),(25,'Daman and Diu',25),(7,'Delhi',7),(30,'Goa',30),(24,'Gujarat',24),(6,'Haryana',6),(2,'Himachal Pradesh',2),(1,'Jammu and Kashmir',1),(20,'Jharkhand',20),(29,'Karnataka',29),(32,'Kerala',32),(31,'Lakshadweep',31),(23,'Madhya Pradesh',23),(27,'Maharashtra',27),(14,'Manipur',14),(17,'Meghalaya',17),(15,'Mizoram',15),(13,'Nagaland',13),(21,'Orissa',21),(34,'Puducherry',34),(3,'Punjab',3),(8,'Rajasthan',8),(11,'Sikkim',11),(33,'Tamil Nadu',33),(16,'Tripura',16),(9,'Uttar Pradesh',9),(5,'Uttarakhand',5),(19,'West Bengal',19);
/*!40000 ALTER TABLE `gst_state_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `heads`
--

DROP TABLE IF EXISTS `heads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `heads` (
  `head_id` int(11) NOT NULL AUTO_INCREMENT,
  `head_name` varchar(100) NOT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`head_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `heads`
--

LOCK TABLES `heads` WRITE;
/*!40000 ALTER TABLE `heads` DISABLE KEYS */;
INSERT INTO `heads` VALUES (1,'salary',0,1,'2018-09-29'),(2,'satish',1,1,'2018-09-29'),(3,'Travel',0,1,'2018-09-29'),(4,'sid',1,1,'2018-09-29'),(5,'bill payment',0,1,'2018-09-29'),(7,'Office Light Bill',5,1,'2018-10-29'),(8,'phone bill',5,1,'2018-09-29'),(9,'Dealer Meeting',3,3,'2018-10-04'),(10,'food',0,1,'2018-10-04'),(11,'Bill 123',5,1,'2018-10-06'),(15,'Gift',0,3,'2018-10-28'),(16,'Gift',15,3,'2018-10-28'),(17,'Factory Light Bill',5,1,'2018-10-29'),(18,'Test',1,1,'2019-01-11');
/*!40000 ALTER TABLE `heads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `invoice_payments`
--

DROP TABLE IF EXISTS `invoice_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_payments` (
  `payment_id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_number` varchar(50) NOT NULL,
  `client_id` int(11) NOT NULL,
  `invoice_amount` float(10,2) NOT NULL DEFAULT '0.00',
  `paid_amount` float(10,2) NOT NULL DEFAULT '0.00',
  `firm_id` int(3) NOT NULL,
  `order_by` int(11) NOT NULL,
  `status` enum('Pending','Paid') NOT NULL DEFAULT 'Pending',
  `reminder_date` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`payment_id`),
  KEY `client_id` (`client_id`,`status`,`reminder_date`),
  KEY `firm_id` (`firm_id`),
  KEY `order_id` (`updated_by`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_payments`
--

LOCK TABLES `invoice_payments` WRITE;
/*!40000 ALTER TABLE `invoice_payments` DISABLE KEYS */;
INSERT INTO `invoice_payments` VALUES (1,'GMO-699',2,115000.00,2800.00,1,1,'Pending','2020-04-30',1,'2020-04-24'),(2,'RAJ-3',2,67200.00,67200.00,1,1,'Paid','0000-00-00',1,'2020-05-04'),(3,'STAR-2',1,41654.00,41654.00,1,3,'Paid','0000-00-00',3,'2020-06-11'),(4,'STAR-1',1,14809.00,14809.00,1,3,'Paid','0000-00-00',3,'2020-06-11'),(8,'STAR-3',1,2549.00,2549.00,1,1,'Paid','0000-00-00',3,'2020-06-14'),(9,'STAR/20-21/5',3,33748.00,33748.00,1,1,'Paid','0000-00-00',1,'2020-06-18'),(10,'MB-1',1,12650.00,12650.00,1,1,'Paid','0000-00-00',1,'2020-06-19'),(11,'MB/20-21/MB/2',3,76228.00,76228.00,1,1,'Paid','0000-00-00',1,'2020-06-19');
/*!40000 ALTER TABLE `invoice_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `manufacturer`
--

DROP TABLE IF EXISTS `manufacturer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `manufacturer` (
  `manufacturer_id` int(11) NOT NULL AUTO_INCREMENT,
  `manufacturer_name` varchar(100) NOT NULL,
  PRIMARY KEY (`manufacturer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `manufacturer`
--

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

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `uid` int(3) NOT NULL,
  `message_text` text NOT NULL,
  `added_on` date NOT NULL,
  `reminder_date` datetime NOT NULL,
  `read_flag` enum('Pending','Read') NOT NULL DEFAULT 'Pending',
  PRIMARY KEY (`id`),
  KEY `uid` (`uid`,`reminder_date`,`read_flag`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` VALUES (1,1,'Your payment is due on 2019-12-25 for invoice # SK-691 from Abhishak Bakery','2019-12-21','2019-12-25 00:00:00','Pending'),(2,1,'Your payment is due on 2020-04-30 for invoice # GMO-699 from Company Name 2','2020-04-24','2020-04-30 00:00:00','Pending'),(3,1,'You scheduled a call with Company Name 1 on 06 May 2020 10:30','2020-05-05','2020-05-06 10:30:00','Pending'),(4,1,'You scheduled a call with Company Name 1 on 05 May 2020 15:30','2020-05-05','2020-05-05 15:30:00','Pending'),(5,4,'You scheduled a call with Lead Name 1 on 16 Jun 2020 13:25','2020-06-16','2020-06-16 13:25:00','Pending'),(6,5,'You scheduled a call with Company Name 4 on 16 Jun 2020 17:30','2020-06-16','2020-06-16 17:30:00','Pending'),(7,3,'You scheduled a call with Company Name 1 on 19 Jun 2020 18:30','2020-06-19','2020-06-19 18:30:00','Pending'),(8,4,'You scheduled a call with Lead Name 1 on 22 Jun 2020 13:50','2020-06-19','2020-06-22 13:50:00','Pending');
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `packing_units`
--

DROP TABLE IF EXISTS `packing_units`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `packing_units` (
  `pu_id` int(11) NOT NULL AUTO_INCREMENT,
  `pu_unit` varchar(10) NOT NULL,
  `pu_conversion` decimal(7,3) NOT NULL,
  `mstr_unit` varchar(3) NOT NULL,
  PRIMARY KEY (`pu_id`),
  UNIQUE KEY `pu_unit` (`pu_unit`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `packing_units`
--

LOCK TABLES `packing_units` WRITE;
/*!40000 ALTER TABLE `packing_units` DISABLE KEYS */;
INSERT INTO `packing_units` VALUES (1,'1 Grm',0.001,'Kg'),(2,'2 Grm',0.002,'Kg'),(3,'10 Grm',0.010,'Kg'),(4,'15 Grm',0.015,'Kg'),(5,'50 Grm',0.050,'Kg'),(6,'100 Grm',0.100,'Kg'),(7,'250 Grm',0.250,'Kg'),(8,'500 Grm',0.500,'Kg'),(9,'1 Kg',1.000,'Kg');
/*!40000 ALTER TABLE `packing_units` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_details`
--

DROP TABLE IF EXISTS `payment_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_ref_id` int(11) NOT NULL DEFAULT '0' COMMENT 'client_id, Supl_id. For account heads = 0',
  `payment_ref_type` int(11) NOT NULL DEFAULT '0' COMMENT 'account_heads->head_id',
  `debit_amount` float(10,2) NOT NULL DEFAULT '0.00',
  `credit_amount` float(10,2) NOT NULL DEFAULT '0.00',
  `bank_id` int(11) NOT NULL DEFAULT '0',
  `firm_id` int(11) NOT NULL DEFAULT '0',
  `transaction_id` varchar(25) NOT NULL,
  `transaction_date` date NOT NULL DEFAULT '0000-00-00',
  `transaction_title` varchar(256) NOT NULL,
  `payment_by` varchar(30) NOT NULL,
  `payment_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Primary key of invoice_payment or purchase_order_payments',
  `ledger_id` int(11) NOT NULL DEFAULT '0',
  `notes` text NOT NULL,
  `updated_by` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `payment_id` (`payment_ref_id`,`bank_id`,`transaction_date`),
  KEY `purc_payment_id` (`payment_ref_type`),
  KEY `firm_id` (`firm_id`),
  KEY `payment_id_2` (`payment_id`),
  KEY `ledger_id` (`ledger_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_details`
--

LOCK TABLES `payment_details` WRITE;
/*!40000 ALTER TABLE `payment_details` DISABLE KEYS */;
INSERT INTO `payment_details` VALUES (1,2,1,115000.00,0.00,0,1,'','2020-04-24','Payment for Invoice #GMO-699','',1,0,'',1),(3,1,1,0.00,50000.00,0,1,'','2020-04-25','Payment against CC #GMO/19-20/36','',0,0,'',1),(4,2,1,67200.00,0.00,0,1,'','2020-05-04','Payment for Invoice #RAJ-3','',2,0,'',1),(5,3,1,0.00,177000.00,0,1,'','2020-05-05','Payment against CC #RAJ/20-21/1','',0,0,'',1),(6,2,2,21830.00,0.00,0,1,'','2020-05-05','Payment of Invoice #RAJ/20-21/1','',0,0,'',1),(7,1,1,0.00,23600.00,0,1,'','2020-06-02','Payment against CC #RAJ/20-21/2','',0,0,'',1),(8,2,2,2950.00,0.00,0,1,'','2020-06-02','Payment of Invoice #RAJ/20-21/2','',0,0,'',1),(9,1,1,41654.00,0.00,0,1,'','2020-06-11','Payment for Invoice #STAR-2','',3,0,'',3),(10,1,1,14809.00,0.00,0,1,'','2020-06-11','Payment for Invoice #STAR-1','',4,0,'',3),(14,1,1,2549.00,0.00,0,1,'','2020-06-14','Payment for Invoice #STAR-3','',8,0,'',3),(15,3,1,33748.00,0.00,0,1,'','2020-06-18','Payment for Invoice #STAR/20-21/5','',9,0,'',1),(16,1,1,12650.00,0.00,0,1,'','2020-06-19','Payment for Invoice #MB-1','',10,0,'',1),(17,3,1,76228.00,0.00,0,1,'','2020-06-19','Payment for Invoice #MB/20-21/MB/2','',11,0,'',1),(18,2,1,0.00,70000.00,0,1,'NEFT','2020-06-18','Opening Balance 2019','Bank Transfer- RTGS/NEFT',0,0,'',3);
/*!40000 ALTER TABLE `payment_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_transaction`
--

DROP TABLE IF EXISTS `payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_transaction` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `amount` float(10,2) NOT NULL DEFAULT '0.00',
  `pay_details_id` int(11) NOT NULL COMMENT 'tbl payment details id',
  `payment_id` int(11) NOT NULL COMMENT 'invoice payment id',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_transaction`
--

LOCK TABLES `payment_transaction` WRITE;
/*!40000 ALTER TABLE `payment_transaction` DISABLE KEYS */;
INSERT INTO `payment_transaction` VALUES (1,67200.00,18,2),(2,2800.00,18,1);
/*!40000 ALTER TABLE `payment_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product`
--

DROP TABLE IF EXISTS `product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product` (
  `pid` int(11) NOT NULL AUTO_INCREMENT,
  `item_code` varchar(11) NOT NULL,
  `product_brand` varchar(50) NOT NULL,
  `product_name` varchar(100) NOT NULL,
  `product_desc` text NOT NULL,
  `prod_unit` varchar(6) NOT NULL DEFAULT 'Nos',
  `min_qty` float(7,2) NOT NULL DEFAULT '0.00',
  `hsn_code` varchar(50) NOT NULL,
  `product_category` varchar(100) NOT NULL DEFAULT 'Finished Good',
  `sub_category` varchar(100) NOT NULL,
  `sgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `cgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `igst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `selling_price` float(10,2) NOT NULL DEFAULT '0.00',
  `selling_price_a` float(7,2) NOT NULL DEFAULT '0.00',
  `selling_price_b` float(7,2) NOT NULL DEFAULT '0.00',
  `tax_free` enum('Yes','No') NOT NULL DEFAULT 'No',
  `manufacturer_id` int(11) NOT NULL DEFAULT '0',
  `design_no` varchar(50) NOT NULL DEFAULT '',
  `revision_no` varchar(2) NOT NULL DEFAULT '',
  `updated_by` int(11) NOT NULL COMMENT 'users->uid',
  `updated_date` date NOT NULL,
  PRIMARY KEY (`pid`),
  KEY `item_code` (`product_brand`,`product_name`),
  KEY `min_qty` (`min_qty`),
  KEY `sgst_per` (`sgst_per`,`cgst_per`,`igst_per`),
  KEY `manufacturer_id` (`manufacturer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=189 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product`
--

LOCK TABLES `product` WRITE;
/*!40000 ALTER TABLE `product` DISABLE KEYS */;
INSERT INTO `product` VALUES (9,'SC003','','2,4-D Ethyl Ester 38% EC 250ml','2,4-D Ethyl Ester 38% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,270.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(8,'SC002','','2,4-D Ethyl Ester 38% EC 500ml','2,4-D Ethyl Ester 38% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,260.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(7,'SC001','','2,4-D Ethyl Ester 38% EC 1liter','2,4-D Ethyl Ester 38% EC 1liter','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,250.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(10,'SC004','','Acephate 75% SP 1kg','Acephate 75% SP 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,580.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(11,'SC005','','Acephate 75% SP 500gm','Acephate 75% SP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,590.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(12,'SC006','','Acephate 75% SP 250gm','Acephate 75% SP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,600.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(13,'SC007','','Acetamiprid 20% SP 500gm','Acetamiprid 20% SP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,750.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(14,'SC008','','Acetamiprid 20% SP 250gm','Acetamiprid 20% SP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,760.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(15,'SC009','','Acetamiprid 20% SP 100gm','Acetamiprid 20% SP 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,780.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(16,'SC010','','Acetamiprid 20% SP 50gm','Acetamiprid 20% SP 50gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,795.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(17,'SC011','','Glyphosate-71% SG 1kg','Glyphosate-71% SG 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,440.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(18,'SC012','','Glyphosate-71% SG 100gm','Glyphosate-71% SG 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,480.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(19,'SC013','','Atrazine 50% WP 500gm','Atrazine 50% WP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,290.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(20,'SC014','','Buprofezin 25% SC 1 litre','Buprofezin 25% SC 1 litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,455.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(21,'SC015','','Buprofezin 25% SC 500ml','Buprofezin 25% SC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,465.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(22,'SC016','','Buprofezin 25% SC 250ml','Buprofezin 25% SC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,475.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(23,'SC017','','Butachlor-50% EC 1litre','Butachlor-50% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,280.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(24,'SC018','','Butachlor-50% EC 500ml','Butachlor-50% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(25,'SC019','','Captan 50% WP 1kg','Captan 50% WP 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(26,'SC020','','Captan 50% WP 500gm','Captan 50% WP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(27,'SC021','','Captan 50% WP 250gm','Captan 50% WP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(28,'SC022','','Captan 50% WP 100gm','Captan 50% WP 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(29,'SC023','','Captan 70% + Hexaconazole 5% WP 1kg','Captan 70% + Hexaconazole 5% WP 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1600.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(30,'SC024','','Captan 70% + Hexaconazole 5% WP 500gm','Captan 70% + Hexaconazole 5% WP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1610.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(31,'SC025','','Captan 70% + Hexaconazole 5% WP 250gm','Captan 70% + Hexaconazole 5% WP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1620.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(32,'SC026','','Captan 70% + Hexaconazole 5% WP 100gm','Captan 70% + Hexaconazole 5% WP 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1640.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(33,'SC027','','Cartap Hydrochloride 50% SP 1kg','Cartap Hydrochloride 50% SP 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1050.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(34,'SC028','','Cartap Hydrochloride 50% SP 500gm','Cartap Hydrochloride 50% SP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1060.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(35,'SC029','','Cartap Hydrochloride 50% SP 250gm','Cartap Hydrochloride 50% SP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1070.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(36,'SC030','','Cartap Hydrochloride 50% SP 100gm','Cartap Hydrochloride 50% SP 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1090.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(37,'SC031','','Cartap Hydrochloride 4% GR 5kg','Cartap Hydrochloride 4% GR 5kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,93.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(38,'SC032','','Cartap Hydrochloride 4% GR 1kg','Cartap Hydrochloride 4% GR 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,97.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(39,'SC033','','Chlorpyriphos 50%EC 5 litre','Chlorpyriphos 50%EC 5 litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,560.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(40,'SC034','','Chlorpyriphos 50%EC 1litre','Chlorpyriphos 50%EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,570.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(41,'SC035','','Chlorpyriphos 50%EC 500ml','Chlorpyriphos 50%EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,580.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(42,'SC036','','Chlorpyriphos 50%EC 250ml','Chlorpyriphos 50%EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,590.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(43,'SC037','','Chlorpyriphos 50%EC 100ml','Chlorpyriphos 50%EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,610.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(44,'SC038','','Chlorpyriphos 50% + Cyper-5% EC 5litre','Chlorpyriphos 50% + Cyper-5% EC 5litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,590.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(45,'SC039','','Chlorpyriphos 50% + Cyper-5% EC 1litre','Chlorpyriphos 50% + Cyper-5% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,600.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(46,'SC040','','Chlorpyriphos 50% + Cyper-5% EC 500ml','Chlorpyriphos 50% + Cyper-5% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,610.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(47,'SC041','','Chlorpyriphos 50% + Cyper-5% EC 250ml','Chlorpyriphos 50% + Cyper-5% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,620.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(48,'SC042','','Chlorpyriphos 50% + Cyper-5% EC 100ml','Chlorpyriphos 50% + Cyper-5% EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,640.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(49,'SC043','','Clodinafop-Propragyl 15% WP 160gm','Clodinafop-Propragyl 15% WP 160gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,240.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(50,'SC044','','Cypermethrin 10% EC 1litre','Cypermethrin 10% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,215.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(51,'SC045','','Cypermethrin 10% EC 500ml','Cypermethrin 10% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,220.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(52,'SC046','','Cypermethrin 10% EC 250ml','Cypermethrin 10% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,230.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(53,'SC047','','Cypermethrin 25% EC 1litre','Cypermethrin 25% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,340.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(54,'SC048','','Cypermethrin 25% EC 500ml','Cypermethrin 25% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,350.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(55,'SC049','','Cypermethrin 25% EC 250ml','Cypermethrin 25% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,360.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(56,'SC050','','Diafenthiuron 50% WP 500gm','Diafenthiuron 50% WP 500gm','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1440.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(57,'SC051','','Diafenthiuron 50% WP 250gm','Diafenthiuron 50% WP 250gm','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1450.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(58,'SC052','','Diafenthiuron 50% WP 100gm','Diafenthiuron 50% WP 100gm','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1470.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(59,'SC053','','Emamectin Benzoate 1.9% EC 1litre','Emamectin Benzoate 1.9% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,485.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(60,'SC054','','Emamectin Benzoate 1.9% EC 500ml','Emamectin Benzoate 1.9% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,495.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(61,'SC055','','Emamectin Benzoate 1.9% EC 250ml','Emamectin Benzoate 1.9% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,505.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(62,'SC056','','Emamectin Benzoate 1.9% EC 100ml','Emamectin Benzoate 1.9% EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(63,'SC057','','Emamectin Benzoate 1.9% EC 50ml','Emamectin Benzoate 1.9% EC 50ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(64,'SC058','','Emamectin Benzoate 5% SG 500gm','Emamectin Benzoate 5% SG 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1650.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(65,'SC059','','Emamectin Benzoate 5% SG 250gm','Emamectin Benzoate 5% SG 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1680.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(66,'SC060','','Emamectin Benzoate 5% SG 100gm','Emamectin Benzoate 5% SG 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(67,'SC061','','Emamectin Benzoate 5% SG 50gm','Emamectin Benzoate 5% SG 50gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(68,'SC062','','Ethion 50% EC 1litre','Ethion 50% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,440.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(69,'SC063','','Ethion 50% EC 500ml','Ethion 50% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,450.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(70,'SC064','','Ethion 50% EC 250ml','Ethion 50% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,460.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(71,'SC065','','Fipronil 0.3% GR 5kg','Fipronil 0.3% GR 5kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,62.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(72,'SC066','','Fipronil 0.3% GR 1kg','Fipronil 0.3% GR 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,65.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(73,'SC067','','Fipronil 5% SC 1litre','Fipronil 5% SC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,750.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(74,'SC068','','Fipronil 5% SC 500ml','Fipronil 5% SC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,760.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(75,'SC069','','Fipronil 5% SC 250ml','Fipronil 5% SC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,770.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(76,'SC070','','Fipronil 5% SC 100ml','Fipronil 5% SC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,790.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(77,'SC071','','Fipronil 80% WG 1kg','Fipronil 80% WG 1kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,10000.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(78,'SC072','','Fipronil 80% WG 500gm','Fipronil 80% WG 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,10050.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(79,'SC073','','Fipronil 80% WG 250gm','Fipronil 80% WG 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,10100.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(80,'SC074','','Fipronil 80% WG 100gm','Fipronil 80% WG 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,10180.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(81,'SC075','','Glyphosate 41% SL 5litre','Glyphosate 41% SL 5litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,260.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(82,'SC076','','Glyphosate 41% SL 1litre','Glyphosate 41% SL 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,270.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(83,'SC077','','Glyphosate 41% SL 500ml','Glyphosate 41% SL 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,280.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(84,'SC078','','Glyphosate 41% SL 250ml','Glyphosate 41% SL 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,290.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(85,'SC079','','Hexaconazole 5% EC 1litre','Hexaconazole 5% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,220.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(86,'SC080','','Hexaconazole 5% EC 500ml','Hexaconazole 5% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,230.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(87,'SC081','','Hexaconazole 5% EC 250ml','Hexaconazole 5% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,240.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(88,'SC082','','Hexaconazole 5% SC 5litre','Hexaconazole 5% SC 5litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,200.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(89,'SC083','','Hexaconazole 5% SC 1litre','Hexaconazole 5% SC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,208.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(90,'SC084','','Hexaconazole 5% SC 500ml','Hexaconazole 5% SC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,218.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(91,'SC085','','Hexaconazole 5% SC 250ml','Hexaconazole 5% SC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,228.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(92,'SC086','','Hexaconazole 75% WG 500gm','Hexaconazole 75% WG 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1220.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(93,'SC087','','Hexaconazole 75% WG 250gm','Hexaconazole 75% WG 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1230.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(94,'SC088','','Hexaconazole 75% WG 100gm','Hexaconazole 75% WG 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1250.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(95,'SC089','','Hexaconazole 75% WG 50gm','Hexaconazole 75% WG 50gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1280.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(96,'SC090','','Imazethapyr 10% SL 1litre','Imazethapyr 10% SL 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(97,'SC091','','Imazethapyr 10% SL 500ml','Imazethapyr 10% SL 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(98,'SC092','','Imazethapyr 10% SL 250ml','Imazethapyr 10% SL 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(99,'SC093','','Imidacloprid 17.8%SL 1litre','Imidacloprid 17.8%SL 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,565.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(100,'SC094','','Imidacloprid 17.8%SL 500ml','Imidacloprid 17.8%SL 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,575.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(101,'SC095','','Imidacloprid 17.8%SL 250ml','Imidacloprid 17.8%SL 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,585.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(102,'SC096','','Imidacloprid 17.8%SL 100ml','Imidacloprid 17.8%SL 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,605.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(103,'SC097','','Imidacloprid 17.8%SL 50ml','Imidacloprid 17.8%SL 50ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(104,'SC098','','Imidaclorprid 30.5% SC 1litre','Imidaclorprid 30.5% SC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,800.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(105,'SC099','','Imidaclorprid 30.5% SC 500ml','Imidaclorprid 30.5% SC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,810.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(106,'SC100','','Imidaclorprid 30.5% SC 250ml','Imidaclorprid 30.5% SC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,820.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(107,'SC101','','Imidaclorprid  70% WG 30gm','Imidaclorprid  70% WG 30gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,2100.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(108,'SC102','','Imidaclorprid  70% WG 75gm','Imidaclorprid  70% WG 75gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1950.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(109,'SC103','','Imidaclorprid  70% WG 150gm','Imidaclorprid  70% WG 150gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1800.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(110,'SC104','','Indoxacarb 14.5% SC 500ml','Indoxacarb 14.5% SC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(111,'SC105','','Indoxacarb 14.5% SC 250ml','Indoxacarb 14.5% SC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(112,'SC106','','Indoxacarb 14.5% SC 100ml','Indoxacarb 14.5% SC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(113,'SC107','','Indoxacarb 14.5% SC 50ml','Indoxacarb 14.5% SC 50ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(114,'SC108','','Indoxacarb 15.8% EC 500ml','Indoxacarb 15.8% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1720.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(115,'SC109','','Indoxacarb 15.8% EC 250ml','Indoxacarb 15.8% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1730.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(116,'SC110','','Indoxacarb 15.8% EC 100ml','Indoxacarb 15.8% EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1750.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(117,'SC111','','Indoxacarb 15.8% EC 50ml','Indoxacarb 15.8% EC 50ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1780.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(118,'SC112','','Lambdacyhalothrin 5% EC 5litre','Lambdacyhalothrin 5% EC 5litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,305.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(119,'SC113','','Lambdacyhalothrin 5% EC 1litre','Lambdacyhalothrin 5% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,315.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(120,'SC114','','Lambdacyhalothrin 5% EC 1litre','Lambdacyhalothrin 5% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,325.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(121,'SC115','','Lambdacyhalothrin 5% EC 250ml','Lambdacyhalothrin 5% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,335.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(122,'SC116','','Lambdacyhalothrin 5% EC 100ml','Lambdacyhalothrin 5% EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,355.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(123,'SC117','','Lambdacyhalothrin 10% WP 500gm','Lambdacyhalothrin 10% WP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,570.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(124,'SC118','','Lambdacyhalothrin 10% WP 250gm','Lambdacyhalothrin 10% WP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,580.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(125,'SC119','','Lambdacyhalothrin 10% WP 100gm','Lambdacyhalothrin 10% WP 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,600.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(126,'SC120','','Metalaxyl 35% WS 500gm','Metalaxyl 35% WS 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,760.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(127,'SC121','','Metalaxyl 35% WS 250gm','Metalaxyl 35% WS 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,770.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(128,'SC122','','Metalaxyl 35% WS 100gm','Metalaxyl 35% WS 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,790.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(129,'SC123','','Metribuzin 70% WP 500gm','Metribuzin 70% WP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(130,'SC124','','Metribuzin 70% WP 250gm','Metribuzin 70% WP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(131,'SC125','','Metribuzin 70% WP 100gm','Metribuzin 70% WP 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,2100.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(132,'SC126','','Oxyflourfen 23.5 % EC 1litre','Oxyflourfen 23.5 % EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1150.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(133,'SC127','','Oxyflourfen 23.5 % EC 500ml','Oxyflourfen 23.5 % EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1160.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(134,'SC128','','Oxyflourfen 23.5 % EC 250ml','Oxyflourfen 23.5 % EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1170.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(135,'SC129','','Oxyflourfen 23.5 % EC 100ml','Oxyflourfen 23.5 % EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1190.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(136,'SC130','','Oxyflourfen 23.5 % EC 50ml','Oxyflourfen 23.5 % EC 50ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,1220.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(137,'SC131','','Paraquat Dichloride 24% SL  5litre','Paraquat Dichloride 24% SL  5litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,310.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(138,'SC132','','Paraquat Dichloride 24% SL  1litre','Paraquat Dichloride 24% SL  1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,320.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(139,'SC133','','Paraquat Dichloride 24% SL  500ml','Paraquat Dichloride 24% SL  500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,330.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(140,'SC134','','Pendimethalin 30% EC 1litre','Pendimethalin 30% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,270.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(141,'SC135','','Pendimethalin 30% EC 500ml','Pendimethalin 30% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,280.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(142,'SC136','','Pendimethalin 30% EC 250ml','Pendimethalin 30% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,290.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(143,'SC137','','Pendimethalin 30% EC 100ml','Pendimethalin 30% EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,310.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(144,'SC138','','Pendimethalin 30% EC 50ml','Pendimethalin 30% EC 50ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,330.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(145,'SC139','','Pretilachlor 50% EC 1litre','Pretilachlor 50% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,450.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(146,'SC140','','Pretilachlor 50% EC 500ml','Pretilachlor 50% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,460.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(147,'SC141','','Profenofos 40% + Cyper-4% EC 1litre','Profenofos 40% + Cyper-4% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,515.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(148,'SC142','','Profenofos 40% + Cyper-4% EC 500ml','Profenofos 40% + Cyper-4% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,525.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(149,'SC143','','Profenofos 40% + Cyper-4% EC 250ml','Profenofos 40% + Cyper-4% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,535.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(150,'SC144','','Profenofos 40% + Cyper-4% EC 100ml','Profenofos 40% + Cyper-4% EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,555.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(151,'SC145','','Profenofos -50% EC 1litre','Profenofos -50% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,525.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(152,'SC146','','Profenofos -50% EC 500ml','Profenofos -50% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,535.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(153,'SC147','','Profenofos -50% EC 250ml','Profenofos -50% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,545.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(154,'SC148','','Profenofos -50% EC 100ml','Profenofos -50% EC 100ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,565.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(155,'SC149','','Propiconazole 25% EC 5litre','Propiconazole 25% EC 5litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,530.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(156,'SC150','','Propiconazole 25% EC 1litre','Propiconazole 25% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,540.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(157,'SC151','','Propiconazole 25% EC 500ml','Propiconazole 25% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,550.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(158,'SC152','','Propiconazole 25% EC 250ml','Propiconazole 25% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,560.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(159,'SC153','','Quinalphos 25% EC 5litre','Quinalphos 25% EC 5litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,295.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(160,'SC154','','Quinalphos 25% EC 1litre','Quinalphos 25% EC 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,310.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(161,'SC155','','Quinalphos 25% EC 500ml','Quinalphos 25% EC 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,320.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(162,'SC156','','Quinalphos 25% EC 250ml','Quinalphos 25% EC 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,330.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(163,'SC157','','Thiomethoxam 25% WG 500gm','Thiomethoxam 25% WG 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,760.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(164,'SC158','','Thiomethoxam 25% WG 250gm','Thiomethoxam 25% WG 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,770.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(165,'SC159','','Thiomethoxam 25% WG 100gm','Thiomethoxam 25% WG 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,790.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(166,'SC160','','Thiomethoxam 70% WS 500gm','Thiomethoxam 70% WS 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,2800.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(167,'SC161','','Thiomethoxam 70% WS 250gm','Thiomethoxam 70% WS 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,2820.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(168,'SC162','','Thiomethoxam 70% WS 100gm','Thiomethoxam 70% WS 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,2850.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(169,'SC163','','Thiomethoxam 75% SG 500gm','Thiomethoxam 75% SG 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,4000.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(170,'SC164','','Thiomethoxam 75% SG 250gm','Thiomethoxam 75% SG 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,4100.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(171,'SC165','','Thiomethoxam 75% SG 100gm','Thiomethoxam 75% SG 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,4200.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(172,'SC166','','Thiomethoxam 30 % FS 1litre','Thiomethoxam 30 % FS 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,875.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(173,'SC167','','Thiomethoxam 30 % FS 500ml','Thiomethoxam 30 % FS 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,885.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(174,'SC168','','Thiomethoxam 30 % FS 250ml','Thiomethoxam 30 % FS 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,900.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(175,'SC169','','Tricyclazole 75% Wg 500gm','Tricyclazole 75% Wg 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1410.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(176,'SC170','','Tricyclazole 75% Wg 250gm','Tricyclazole 75% Wg 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1420.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(177,'SC171','','Tricyclazole 75% Wg 100gm','Tricyclazole 75% Wg 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,1440.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(178,'SC172','','Tricyclazole 75% WP 500gm','Tricyclazole 75% WP 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(179,'SC173','','Tricyclazole 75% WP 250gm','Tricyclazole 75% WP 250gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(180,'SC174','','Tricyclazole 75% WP 100gm','Tricyclazole 75% WP 100gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,0.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(181,'SC175','','Validamycin 3% L 1litre','Validamycin 3% L 1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,360.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(182,'SC176','','Validamycin 3% L 500ml','Validamycin 3% L 500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,270.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(183,'SC177','','Validamycin 3% L 250ml','Validamycin 3% L 250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,280.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(184,'SC178','','Humic Acid 16% Liquid with fulvic  1litre','Humic Acid 16% Liquid with fulvic  1litre','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,270.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(185,'SC179','','Humic Acid 16% Liquid with fulvic  500ml','Humic Acid 16% Liquid with fulvic  500ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,280.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(186,'SC180','','Humic Acid 16% Liquid with fulvic  250ml','Humic Acid 16% Liquid with fulvic  250ml','Lit',0.00,'3808','Finished Good','',9.00,9.00,18.00,290.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(187,'SC181','','Humic Acid shiny flakes with fulvic 500gm','Humic Acid shiny flakes with fulvic 500gm','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,380.00,0.00,0.00,'No',0,'','',0,'0000-00-00'),(188,'SC182','','Humic Amino Shiny Balls (Granules)  2kg','Humic Amino Shiny Balls (Granules)  2kg','Kg',0.00,'3808','Finished Good','',9.00,9.00,18.00,95.00,0.00,0.00,'No',0,'','',0,'0000-00-00');
/*!40000 ALTER TABLE `product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_batch_details`
--

DROP TABLE IF EXISTS `product_batch_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_batch_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `lot_no` varchar(20) NOT NULL,
  `bag_no` varchar(5) NOT NULL DEFAULT '0',
  `packing` float(10,2) NOT NULL DEFAULT '0.00',
  `sample_no` varchar(100) NOT NULL,
  `received_at` varchar(50) NOT NULL,
  `transporter` varchar(50) NOT NULL,
  `batch_remark` text NOT NULL,
  `invoice_firm` int(11) NOT NULL DEFAULT '1',
  `material_inward_no` varchar(26) NOT NULL,
  `manufacturing_date` varchar(7) NOT NULL DEFAULT '00-0000',
  `expiry_date` varchar(7) NOT NULL DEFAULT '00-0000',
  `tax_per` float(4,2) NOT NULL,
  `tax_type` varchar(6) NOT NULL,
  `tax_id` int(11) NOT NULL DEFAULT '0',
  `excise` float(4,2) NOT NULL DEFAULT '0.00' COMMENT 'This is CGST perc',
  `added_by` int(3) NOT NULL,
  `purc_order_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `lot_no` (`lot_no`,`sample_no`,`transporter`),
  KEY `invoice_firm` (`invoice_firm`),
  KEY `added_by` (`added_by`),
  KEY `purc_ord_id` (`purc_order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_batch_details`
--

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

--
-- Table structure for table `product_specifications`
--

DROP TABLE IF EXISTS `product_specifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_specifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `spec_name` varchar(250) NOT NULL,
  `document_name` varchar(256) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_specifications`
--

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

--
-- Table structure for table `product_stock`
--

DROP TABLE IF EXISTS `product_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_stock` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL,
  `comp_id` int(10) NOT NULL DEFAULT '0',
  `su_id` int(10) NOT NULL DEFAULT '0',
  `invoice_no` varchar(25) NOT NULL,
  `order_id` int(11) NOT NULL,
  `challan_no` varchar(25) NOT NULL,
  `inw_qty` float(10,2) NOT NULL,
  `outw_qty` float(10,2) NOT NULL,
  `lot_no` varchar(20) NOT NULL DEFAULT '0',
  `rate` float(10,2) NOT NULL,
  `dp_amount` float(8,2) NOT NULL DEFAULT '0.00',
  `amount` float(10,2) NOT NULL,
  `instock` float(10,2) NOT NULL,
  `on_date` date NOT NULL,
  `batch_desc` text NOT NULL,
  `sip_id` int(11) NOT NULL COMMENT 'supl_invoice_products->id',
  `meter_start` float(12,3) NOT NULL DEFAULT '0.000',
  `meter_end` float(12,3) NOT NULL DEFAULT '0.000',
  `firm_id` int(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `pid` (`pid`,`comp_id`,`su_id`,`invoice_no`),
  KEY `lot_no` (`lot_no`),
  KEY `order_id` (`order_id`,`challan_no`),
  KEY `firm_id` (`firm_id`)
) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_stock`
--

LOCK TABLES `product_stock` WRITE;
/*!40000 ALTER TABLE `product_stock` DISABLE KEYS */;
INSERT INTO `product_stock` VALUES (1,7,2,0,'GMO-698',1,'',0.00,10.00,'0',155.00,0.00,1550.00,0.00,'2020-04-22','',0,0.000,0.000,1),(2,2,2,0,'GMO-699',1,'',0.00,100.00,'0',150.00,0.00,15000.00,0.00,'2020-04-24','',0,0.000,0.000,1),(3,3,2,0,'GMO-699',1,'',0.00,500.00,'0',200.00,0.00,100000.00,0.00,'2020-04-24','',0,0.000,0.000,1),(4,3,2,0,'RAJ-3',7,'',0.00,100.00,'0',200.00,0.00,20000.00,0.00,'2020-05-04','',0,0.000,0.000,1),(5,2,2,0,'RAJ-3',7,'',0.00,400.00,'0',100.00,0.00,40000.00,0.00,'2020-05-04','',0,0.000,0.000,1),(6,11,1,0,'STAR-2',9,'',0.00,50.00,'0',590.00,0.00,29500.00,0.00,'2020-06-11','',0,0.000,0.000,1),(7,10,1,0,'STAR-2',9,'',0.00,10.00,'0',580.00,0.00,5800.00,0.00,'2020-06-11','',0,0.000,0.000,1),(8,145,1,0,'STAR-1',8,'',0.00,15.00,'0',450.00,0.00,6750.00,0.00,'2020-06-11','',0,0.000,0.000,1),(9,10,1,0,'STAR-1',8,'',0.00,10.00,'0',580.00,0.00,5800.00,0.00,'2020-06-11','',0,0.000,0.000,1),(17,7,1,0,'STAR-3',10,'',0.00,2.00,'0',250.00,0.00,500.00,0.00,'2020-06-14','',0,0.000,0.000,1),(16,10,1,0,'STAR-3',10,'',0.00,2.00,'0',580.00,0.00,1160.00,0.00,'2020-06-14','',0,0.000,0.000,1),(18,15,3,0,'STAR/20-21/5',13,'',0.00,10.00,'0',155.00,0.00,1550.00,0.00,'2020-06-18','',0,0.000,0.000,1),(19,12,3,0,'STAR/20-21/5',13,'',0.00,20.00,'0',150.00,0.00,3000.00,0.00,'2020-06-18','',0,0.000,0.000,1),(20,20,3,0,'STAR/20-21/5',13,'',0.00,30.00,'0',455.00,0.00,13650.00,0.00,'2020-06-18','',0,0.000,0.000,1),(21,8,3,0,'STAR/20-21/5',13,'',0.00,40.00,'0',260.00,0.00,10400.00,0.00,'2020-06-18','',0,0.000,0.000,1),(22,13,1,0,'MB-1',14,'',0.00,10.00,'0',750.00,0.00,7500.00,0.00,'2020-06-19','',0,0.000,0.000,1),(23,11,1,0,'MB-1',14,'',0.00,5.00,'0',590.00,0.00,2950.00,0.00,'2020-06-19','',0,0.000,0.000,1),(24,9,1,0,'MB-1',14,'',0.00,1.00,'0',270.00,0.00,270.00,0.00,'2020-06-19','',0,0.000,0.000,1),(25,9,3,0,'MB/20-21/MB/2',15,'',0.00,100.00,'0',270.00,0.00,27000.00,0.00,'2020-06-19','',0,0.000,0.000,1),(26,12,3,0,'MB/20-21/MB/2',15,'',0.00,50.00,'0',600.00,0.00,30000.00,0.00,'2020-06-19','',0,0.000,0.000,1),(27,13,3,0,'MB/20-21/MB/2',15,'',0.00,10.00,'0',750.00,0.00,7500.00,0.00,'2020-06-19','',0,0.000,0.000,1);
/*!40000 ALTER TABLE `product_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `purchase_order_payments`
--

DROP TABLE IF EXISTS `purchase_order_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_payments` (
  `payment_id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_num` varchar(50) NOT NULL,
  `material_inward_no` varchar(50) NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `gross_total` decimal(9,2) NOT NULL,
  `total_discount` decimal(9,2) NOT NULL,
  `po_amount` float(10,2) NOT NULL DEFAULT '0.00' COMMENT 'This is actual invoice amount of supplier',
  `paid_amount` float(10,2) NOT NULL DEFAULT '0.00',
  `firm_id` int(3) NOT NULL,
  `po_by` int(11) NOT NULL,
  `status` enum('Pending','Paid') NOT NULL DEFAULT 'Pending',
  `reminder_date` date NOT NULL,
  `purc_order_id` int(11) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`payment_id`),
  KEY `client_id` (`supplier_id`,`status`,`reminder_date`),
  KEY `firm_id` (`firm_id`),
  KEY `order_id` (`purc_order_id`,`updated_by`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_payments`
--

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

--
-- Table structure for table `purchase_order_products`
--

DROP TABLE IF EXISTS `purchase_order_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `purc_order_id` int(11) NOT NULL,
  `purchase_pid` int(11) NOT NULL,
  `purchase_qty` float(10,2) NOT NULL,
  `purchase_rate` float(10,2) NOT NULL,
  `prod_ref_name` varchar(100) NOT NULL,
  `total_inword` float(10,2) NOT NULL,
  `dp_amount` float(8,2) NOT NULL DEFAULT '0.00',
  `sgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `cgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `igst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `utgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`id`),
  KEY `purc_order_id` (`purc_order_id`,`purchase_pid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_products`
--

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

--
-- Table structure for table `purchase_orders`
--

DROP TABLE IF EXISTS `purchase_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_orders` (
  `purc_order_id` int(11) NOT NULL AUTO_INCREMENT,
  `purc_order_number` varchar(50) NOT NULL,
  `enquiry_id` int(11) NOT NULL,
  `order_by` int(11) NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `firm_id` int(3) NOT NULL,
  `supl_state_id` int(2) NOT NULL DEFAULT '0',
  `supplier_invoice_num` varchar(50) NOT NULL DEFAULT '-',
  `tax_type` varchar(10) NOT NULL DEFAULT '',
  `tax_per` float(5,2) NOT NULL,
  `tax_id` int(11) NOT NULL,
  `excise` float(5,2) NOT NULL,
  `pay_term` varchar(100) NOT NULL,
  `payment_reminder` int(3) NOT NULL,
  `expected_delivery` date NOT NULL,
  `transport_name` varchar(256) NOT NULL,
  `delivery_address` varchar(100) NOT NULL,
  `order_remark` text NOT NULL,
  `order_date` date NOT NULL,
  `forwardingAmt` float(10,2) NOT NULL,
  `discountAmt` float(10,2) NOT NULL,
  `otherAdjustment` float(10,2) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  `status` enum('Open','Closed','Confirmed','Completed') NOT NULL DEFAULT 'Open',
  `account_confirmed` enum('1','0') NOT NULL DEFAULT '0' COMMENT '1- Confirmed, 0- Confirmation Pending',
  PRIMARY KEY (`purc_order_id`),
  KEY `enquiry_id` (`enquiry_id`,`order_by`,`firm_id`,`status`),
  KEY `supplier_id` (`supplier_id`),
  KEY `order_date` (`order_date`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_orders`
--

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

--
-- Table structure for table `sales_bank_entry`
--

DROP TABLE IF EXISTS `sales_bank_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_bank_entry` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `client_id` int(5) NOT NULL,
  `comp_ref_id` int(11) NOT NULL,
  `user_id` int(3) NOT NULL,
  `entry_amount` float(10,2) NOT NULL,
  `entry_date` date NOT NULL,
  `bank_id` int(11) NOT NULL,
  `cheque_number` varchar(25) NOT NULL,
  `account_comment` text NOT NULL,
  `sales_comment` text NOT NULL,
  `frn_bank_id` int(11) NOT NULL,
  `confirmed_by` varchar(50) NOT NULL,
  `confirmed_on` date NOT NULL,
  `status` enum('Pending','Completed') NOT NULL DEFAULT 'Pending',
  PRIMARY KEY (`id`),
  KEY `client_id` (`client_id`,`user_id`),
  KEY `comp_ref_id` (`comp_ref_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bank_entry`
--

LOCK TABLES `sales_bank_entry` WRITE;
/*!40000 ALTER TABLE `sales_bank_entry` DISABLE KEYS */;
INSERT INTO `sales_bank_entry` VALUES (1,8,8,1,1500.00,'2019-05-16',2,'Cash Deposited','','-',0,'Admin ','2019-08-02','Completed'),(2,8,8,1,1000.00,'2019-10-31',1,'-','','Comments are here',0,'Live  Cake','2019-11-01','Completed'),(3,8,8,1,15000.00,'2020-01-15',1,'Cash Deposited','','-',0,'Fname Admin','2020-01-15','Completed'),(4,8,8,1,5000.00,'2020-01-15',1,'cash','','-',0,'Fname Admin','2020-01-16','Completed'),(5,8,8,1,15000.00,'2020-01-20',1,'cash','','-',0,'Fname Admin','2020-01-21','Completed'),(6,8,8,1,5000.00,'2020-01-18',1,'Cash Deposited','','-',12,'','0000-00-00','Pending'),(7,1,0,4,15000.00,'2020-06-01',1,'Cash Deposited','','Test',0,'','0000-00-00','Pending'),(8,1,0,1,10000.00,'2020-06-12',1,'Chq-1','','Admin entry',0,'','0000-00-00','Pending');
/*!40000 ALTER TABLE `sales_bank_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order`
--

DROP TABLE IF EXISTS `sales_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order` (
  `sales_id` int(11) NOT NULL AUTO_INCREMENT,
  `comp_id` int(11) NOT NULL,
  `order_num` varchar(15) NOT NULL,
  `contact_name` varchar(30) CHARACTER SET utf8 NOT NULL,
  `contact_number` varchar(25) NOT NULL,
  `comp_name` varchar(250) CHARACTER SET utf8 NOT NULL,
  `client_area` varchar(100) CHARACTER SET utf8 NOT NULL,
  `order_date` date NOT NULL,
  `invoice_firm` int(2) NOT NULL,
  `order_status` varchar(20) NOT NULL DEFAULT 'Pending',
  `created_by` int(11) NOT NULL,
  `created_on` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`sales_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order`
--

LOCK TABLES `sales_order` WRITE;
/*!40000 ALTER TABLE `sales_order` DISABLE KEYS */;
INSERT INTO `sales_order` VALUES (1,2,'STAR/20-21/SO/1','','','','','2020-06-15',1,'Completed',4,'2020-06-15',4,'2020-06-15'),(2,4,'STAR/20-21/SO/2','','','','','2020-06-14',1,'Completed',5,'2020-06-16',5,'2020-06-18'),(3,2,'STAR/20-21/SO/3','','','','','2020-06-18',1,'Completed',4,'2020-06-18',4,'2020-06-18'),(4,3,'STAR/20-21/SO/4','','','','','2020-06-18',1,'Converted',4,'2020-06-18',4,'2020-06-18'),(5,1,'MB/20-21/SO/1','','','','','2020-06-19',1,'Completed',4,'2020-06-19',4,'2020-06-19');
/*!40000 ALTER TABLE `sales_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_product`
--

DROP TABLE IF EXISTS `sales_order_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_product` (
  `sales_order_id` int(11) NOT NULL AUTO_INCREMENT,
  `sales_id` int(11) NOT NULL,
  `sales_pid` int(11) NOT NULL,
  `schm_id` int(11) NOT NULL,
  `order_qty` float(7,2) NOT NULL,
  `order_rate` decimal(6,2) NOT NULL,
  `product_name` varchar(150) CHARACTER SET utf8 NOT NULL,
  `order_packing` varchar(150) CHARACTER SET utf8 NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`sales_order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_product`
--

LOCK TABLES `sales_order_product` WRITE;
/*!40000 ALTER TABLE `sales_order_product` DISABLE KEYS */;
INSERT INTO `sales_order_product` VALUES (4,1,22,0,10.00,0.00,'','',4,'2020-06-15'),(5,1,15,0,30.00,0.00,'','',4,'2020-06-15'),(20,3,14,0,10.00,760.00,'','',4,'2020-06-18'),(21,3,22,0,15.00,475.00,'','',4,'2020-06-18'),(22,3,20,0,20.00,455.00,'','',4,'2020-06-18'),(23,4,15,0,10.00,155.00,'Acetamiprid 20% SP 100gm','',4,'2020-06-18'),(24,4,12,0,20.00,150.00,'Acephate 75% SP 250gm','',4,'2020-06-18'),(25,4,20,0,30.00,455.00,'Buprofezin 25% SC 1 litre','',4,'2020-06-18'),(26,2,16,0,10.00,0.00,'Acetamiprid 20% SP 50gm','',5,'2020-06-18'),(27,2,20,0,25.00,0.00,'Buprofezin 25% SC 1 litre','',5,'2020-06-18'),(28,5,17,0,500.00,250.00,'Glyphosate-71% SG 1kg','',4,'2020-06-19');
/*!40000 ALTER TABLE `sales_order_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `schemes`
--

DROP TABLE IF EXISTS `schemes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `schemes` (
  `schm_id` int(4) NOT NULL AUTO_INCREMENT,
  `schm_pid` varchar(256) NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `schm_desc` text CHARACTER SET utf8 NOT NULL,
  `schm_name` varchar(256) NOT NULL,
  `schm_brochure` varchar(256) NOT NULL,
  `schm_status` enum('Active','In-Active','Closed') NOT NULL,
  `created_on` date NOT NULL,
  `created_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  PRIMARY KEY (`schm_id`),
  KEY `schm_pid` (`schm_pid`,`start_date`,`end_date`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `schemes`
--

LOCK TABLES `schemes` WRITE;
/*!40000 ALTER TABLE `schemes` DISABLE KEYS */;
INSERT INTO `schemes` VALUES (1,'1','2020-04-23','2020-05-25','पुरवठादार ','','','Active','2020-04-21',1,'2020-04-21',1),(2,'2','2020-04-21','2020-04-24','','','','Active','2020-04-21',1,'2020-04-21',1),(3,'3,6','2020-05-04','2020-05-11','<p>पुरवठादार 34</p>','Scheme Name 3','1587533713Client_Name-_CD_19-20_34.pdf','Active','2020-04-21',1,'2020-05-11',1),(4,'1','2020-05-06','2020-05-30','<p>Scheme Description updatd here</p>','Scheme Name updated','1588558527Dhule_Shahar_Vikas_Bank_-_Quotation.pdf','Active','2020-05-04',1,'2020-05-04',1),(5,'2,3,4','2020-05-11','2020-05-21','<p>Details</p>','Scheme Name updated 1','','Active','2020-05-11',1,'2020-05-11',1),(6,'8,10','2020-06-11','2020-07-30','<p>Testting updates</p>','Scheme Name updated 1','','Active','2020-06-11',3,'2020-06-14',3),(7,'8,13','2020-06-14','2020-07-14','<p>Scceme details are here</p>','Scheme Name','1592153960AT_20-21_13.pdf','Active','2020-06-14',3,'2020-06-14',3);
/*!40000 ALTER TABLE `schemes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `supl_invoice_products`
--

DROP TABLE IF EXISTS `supl_invoice_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supl_invoice_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `supl_inv_id` int(11) NOT NULL,
  `invoice_pid` int(11) NOT NULL,
  `product_name` varchar(156) NOT NULL,
  `invoice_qty` decimal(7,2) NOT NULL,
  `invoice_rate` decimal(8,2) NOT NULL,
  `sgst_per` float(4,2) NOT NULL,
  `cgst_per` float(4,2) NOT NULL,
  `igst_per` float(4,2) NOT NULL,
  `discount_per` float(4,2) NOT NULL,
  `ps_id` int(11) NOT NULL COMMENT 'product_stock->id',
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`id`),
  KEY `supl_inv_id` (`supl_inv_id`,`invoice_pid`,`discount_per`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supl_invoice_products`
--

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

--
-- Table structure for table `supplier_invoices`
--

DROP TABLE IF EXISTS `supplier_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_invoices` (
  `supl_inv_id` int(11) NOT NULL AUTO_INCREMENT,
  `supplier_id` int(11) NOT NULL,
  `supplier_invoice_no` varchar(20) NOT NULL,
  `supplier_invoice_date` date NOT NULL,
  `discount_per` float(4,2) NOT NULL,
  `discount_amount` decimal(7,2) NOT NULL,
  `firm_id` int(11) NOT NULL,
  `invoice_state_id` int(11) NOT NULL,
  `import_bill_id` int(11) NOT NULL,
  `invoice_status` enum('Pending','Completed') NOT NULL DEFAULT 'Pending',
  `added_by` int(11) NOT NULL,
  `added_on` date NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_on` date NOT NULL,
  PRIMARY KEY (`supl_inv_id`),
  KEY `supplier_id` (`supplier_id`,`firm_id`,`invoice_status`,`added_by`,`added_on`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_invoices`
--

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

--
-- Table structure for table `supplier_po_prodcts`
--

DROP TABLE IF EXISTS `supplier_po_prodcts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_po_prodcts` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'This will be used in challen table as ref_id',
  `supplier_po_id` int(11) NOT NULL,
  `supplier_po_pid` int(11) NOT NULL DEFAULT '0',
  `prod_ref_name` varchar(256) NOT NULL,
  `po_qty` float(10,2) NOT NULL,
  `po_rate` float(10,2) NOT NULL,
  `discount_per` float(4,2) NOT NULL,
  `tax_free` enum('Yes','No') NOT NULL DEFAULT 'No',
  `sgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `cgst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `igst_per` float(4,2) NOT NULL DEFAULT '0.00',
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`id`),
  KEY `order_id` (`supplier_po_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_po_prodcts`
--

LOCK TABLES `supplier_po_prodcts` WRITE;
/*!40000 ALTER TABLE `supplier_po_prodcts` DISABLE KEYS */;
INSERT INTO `supplier_po_prodcts` VALUES (1,1,2,'Product 1',1000.00,150.00,0.00,'No',0.00,0.00,18.00,1,'2020-05-05'),(2,1,3,'Product 2',1500.00,200.00,0.00,'No',0.00,0.00,12.00,1,'2020-05-05'),(3,2,12,'Acephate 75% SP 250gm',10.00,100.00,0.00,'No',9.00,9.00,0.00,3,'2020-06-11'),(4,2,10,'Acephate 75% SP 1kg',20.00,150.00,0.00,'No',9.00,9.00,0.00,3,'2020-06-11'),(8,3,13,'Acetamiprid 20% SP 500gm',5000.00,105.50,0.00,'No',0.00,0.00,12.00,3,'2020-06-14'),(7,3,11,'Acephate 75% SP 500gm',1000.00,55.55,0.00,'No',0.00,0.00,18.00,3,'2020-06-14');
/*!40000 ALTER TABLE `supplier_po_prodcts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `supplier_pos`
--

DROP TABLE IF EXISTS `supplier_pos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_pos` (
  `supplier_po_id` int(11) NOT NULL AUTO_INCREMENT,
  `supplier_po_number` varchar(17) NOT NULL,
  `invoice_firm` int(11) NOT NULL DEFAULT '1' COMMENT 'order under firm',
  `supplier_id` int(11) NOT NULL,
  `uid` int(11) NOT NULL,
  `contact_person` varchar(100) NOT NULL,
  `shipping_address` text NOT NULL,
  `billing_address` text NOT NULL,
  `pay_term` varchar(256) NOT NULL,
  `state_code` int(2) NOT NULL DEFAULT '27',
  `supplier_po_date` date NOT NULL,
  `supplier_po_status` varchar(9) NOT NULL DEFAULT 'Pending' COMMENT 'Pending, Completed and Closed',
  `updated_by` int(11) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`supplier_po_id`,`supplier_id`,`uid`),
  KEY `invoice_number` (`invoice_firm`),
  KEY `invoice_firm` (`invoice_firm`),
  KEY `comp_id` (`supplier_id`),
  KEY `uid` (`uid`),
  KEY `order_status` (`supplier_po_status`),
  KEY `order_number` (`supplier_po_number`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_pos`
--

LOCK TABLES `supplier_pos` WRITE;
/*!40000 ALTER TABLE `supplier_pos` DISABLE KEYS */;
INSERT INTO `supplier_pos` VALUES (1,'RAJ/20-21/PO/1',1,1,1,'Pravin Testing','Address Line 1\r\nAddress Line 2\r\nAddress Line 3','Address Line 1\r\nAddress Line 2\r\nAddress Line 3','AGAINST 100% INVOICE',27,'2020-05-05','Completed',1,'2020-05-05'),(2,'STAR/20-21/PO/1',1,3,3,'Pravin Testing','Billing Address 1\r\nBilling Address 2\r\nBilling Address 3','Billing Address 1\r\nBilling Address 2\r\nBilling Address 3','Payment Terms here',24,'2020-06-11','Completed',3,'2020-06-11'),(3,'STAR/20-21/PO/2',1,1,3,'Supplier Contact 1','Address line 1\r\nAddress line 2\r\nAddress line 3','Address line 1\r\nAddress line 2\r\nAddress line 3','One month credit',27,'2020-06-14','Completed',3,'2020-06-14');
/*!40000 ALTER TABLE `supplier_pos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `suppliers`
--

DROP TABLE IF EXISTS `suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `suppliers` (
  `supl_id` int(11) NOT NULL AUTO_INCREMENT,
  `supl_comp` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `supl_address` tinytext COLLATE latin1_general_ci NOT NULL,
  `supl_phone` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `supl_email` varchar(256) COLLATE latin1_general_ci NOT NULL,
  `supl_conperson` varchar(50) COLLATE latin1_general_ci NOT NULL,
  `supl_mobile` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `supl_website` varchar(100) COLLATE latin1_general_ci NOT NULL,
  `supl_category` varchar(50) COLLATE latin1_general_ci NOT NULL,
  `supl_city` varchar(50) COLLATE latin1_general_ci NOT NULL,
  `supl_state` varchar(50) COLLATE latin1_general_ci NOT NULL,
  `supl_country` varchar(150) COLLATE latin1_general_ci NOT NULL DEFAULT 'India',
  `supl_state_id` int(2) NOT NULL DEFAULT '0',
  `postal_add` text COLLATE latin1_general_ci NOT NULL,
  `handling_person` int(11) NOT NULL,
  `supplier_type` enum('Supplier','Lead') COLLATE latin1_general_ci NOT NULL DEFAULT 'Supplier',
  `tin_num` varchar(15) COLLATE latin1_general_ci NOT NULL,
  `is_deleted` int(1) NOT NULL DEFAULT '0' COMMENT '0- Active, 1- in-active',
  `vat_no` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `gstin_num` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `cst_no` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `excise_no` varchar(25) COLLATE latin1_general_ci NOT NULL,
  `notes` text COLLATE latin1_general_ci NOT NULL,
  `other_information` text COLLATE latin1_general_ci NOT NULL,
  `special_comment` text COLLATE latin1_general_ci NOT NULL,
  `pan_no` varchar(20) COLLATE latin1_general_ci NOT NULL,
  `updated_by` int(3) NOT NULL,
  `updated_date` date NOT NULL,
  PRIMARY KEY (`supl_id`),
  KEY `handling_person` (`handling_person`),
  KEY `is_deleted` (`is_deleted`),
  KEY `updated_by` (`updated_by`,`updated_date`),
  KEY `supplier_type` (`supplier_type`)
) ENGINE=MyISAM AUTO_INCREMENT=118 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `suppliers`
--

LOCK TABLES `suppliers` WRITE;
/*!40000 ALTER TABLE `suppliers` DISABLE KEYS */;
INSERT INTO `suppliers` VALUES (1,'Supplier 1','Address line 1\r\nAddress line 2\r\nAddress line 3','1234569870','test@test.com','Supplier Contact 1','1236547890','-','','Mumbai','','',27,'',0,'Supplier','',0,'','GSTIN NUMBER HERE','','','','','','-',3,'2020-06-14'),(2,'Supplier 2','','','','','','','','','','India',0,'',0,'Supplier','',0,'','','','','','','','',0,'0000-00-00'),(3,'Supplier 3','','','','','','','','','','India',0,'',0,'Supplier','',0,'','','','','','','','',0,'0000-00-00'),(4,'Supplier 4','','','','','','','','','','India',0,'',0,'Supplier','',0,'','','','','','','','',0,'0000-00-00');
/*!40000 ALTER TABLE `suppliers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_structure`
--

DROP TABLE IF EXISTS `tax_structure`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_structure` (
  `tax_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_per` float(4,2) NOT NULL,
  `tax_type` varchar(15) NOT NULL,
  `status` enum('Active','In-Active') NOT NULL DEFAULT 'Active',
  PRIMARY KEY (`tax_id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_structure`
--

LOCK TABLES `tax_structure` WRITE;
/*!40000 ALTER TABLE `tax_structure` DISABLE KEYS */;
INSERT INTO `tax_structure` VALUES (13,9.00,'SGST','Active'),(14,9.00,'CGST','Active'),(15,6.00,'CGST','Active'),(16,6.00,'SGST','Active'),(17,14.00,'SGST','Active'),(18,14.00,'CGST','Active'),(20,12.00,'IGST','Active'),(21,18.00,'IGST','Active'),(22,28.00,'IGST','Active');
/*!40000 ALTER TABLE `tax_structure` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `upload_documents`
--

DROP TABLE IF EXISTS `upload_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `upload_documents` (
  `document_id` int(11) NOT NULL AUTO_INCREMENT,
  `document_name` varchar(100) NOT NULL,
  `document_image` varchar(100) NOT NULL,
  `invoice_amt` decimal(9,2) NOT NULL,
  `upload_date` date NOT NULL,
  `comp_id` int(5) NOT NULL,
  `uid` int(3) NOT NULL,
  `created_on` date NOT NULL,
  `created_by` int(3) NOT NULL,
  PRIMARY KEY (`document_id`),
  KEY `comp_id` (`comp_id`,`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `upload_documents`
--

LOCK TABLES `upload_documents` WRITE;
/*!40000 ALTER TABLE `upload_documents` DISABLE KEYS */;
INSERT INTO `upload_documents` VALUES (1,'APL/20-21/10','1587533713Client_Name-_CD_19-20_34.pdf',1234567.00,'2020-04-22',1,4,'2020-04-22',1),(2,'APL/20-21/11','1587543855General_Client-_RT_18-19_62(2).pdf',15000.00,'2020-04-21',1,4,'2020-04-22',1);
/*!40000 ALTER TABLE `upload_documents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `uploaded_bill`
--

DROP TABLE IF EXISTS `uploaded_bill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `uploaded_bill` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_no` varchar(50) NOT NULL COMMENT 'This is invoice_date',
  `supplier_id` int(50) NOT NULL,
  `invoice_date` varchar(50) NOT NULL,
  `billing_date` date NOT NULL,
  `discount_amount` decimal(7,2) NOT NULL,
  `discount_per` decimal(4,2) NOT NULL,
  `filename` varchar(50) NOT NULL,
  `firm_id` int(11) NOT NULL,
  `invoice_state_id` int(11) NOT NULL,
  `status` enum('Pending','Completed','Closed') NOT NULL DEFAULT 'Pending',
  `uploaded_on` date NOT NULL,
  `uploaded_by` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `uploaded_bill`
--

LOCK TABLES `uploaded_bill` WRITE;
/*!40000 ALTER TABLE `uploaded_bill` DISABLE KEYS */;
INSERT INTO `uploaded_bill` VALUES (1,'497',5,'2020-02-23','0000-00-00',0.00,0.00,'1584508246Sample_File.csv',1,27,'Completed','2020-03-18',1),(2,'492',5,'2020-03-03','0000-00-00',0.00,0.00,'1584524448Sample_File.csv',1,27,'Closed','2020-03-18',1),(3,'NA',1,'2020-04-11','0000-00-00',0.00,0.00,'1586608611Sample_File(2).csv',1,27,'Completed','2020-04-11',1),(4,'NA',1,'2020-06-11','0000-00-00',0.00,0.00,'1591855874Sample_File(4).csv',1,0,'Pending','2020-06-11',3);
/*!40000 ALTER TABLE `uploaded_bill` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `uid` int(3) NOT NULL AUTO_INCREMENT,
  `username` varchar(20) NOT NULL,
  `pass` varchar(100) NOT NULL,
  `first_name` varchar(20) NOT NULL,
  `last_name` varchar(20) NOT NULL,
  `email` varchar(100) NOT NULL,
  `phone_number` varchar(12) NOT NULL,
  `address` tinytext NOT NULL,
  `user_role` enum('Admin','Super Admin','Sales') NOT NULL DEFAULT 'Admin',
  `user_status` enum('Active','In-Active') NOT NULL DEFAULT 'Active',
  PRIMARY KEY (`uid`),
  UNIQUE KEY `username` (`username`),
  KEY `user_role` (`user_role`,`user_status`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'admin','0192023a7bbd73250516f069df18b500','Admin','','admin@gmail.com','1231321321','','Admin','Active'),(3,'superAdmin','b7812ec5870a668902182fedcd02de5c','Super','Admin','','','','Super Admin','Active'),(4,'sales1','25d55ad283aa400af464c76d713c07ad','Sales','User1','sales1@test.com','1234567890','','','In-Active'),(5,'sales2','bac76b0feb747e3bde11269cf367c97b','Sales','2','sales2@test.com','-','','Sales','Active');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_commentmeta` VALUES (1,2,'verified','0'),(2,3,'verified','0'),(3,5,'verified','0'),(4,6,'verified','0'),(5,7,'verified','0'),(6,8,'verified','0'),(7,9,'verified','0'),(8,10,'verified','0'),(9,11,'verified','0'),(10,12,'verified','0'),(11,13,'verified','0'),(12,14,'verified','0'),(13,15,'verified','0'),(14,16,'verified','0'),(15,17,'verified','0'),(16,18,'verified','0'),(17,19,'verified','0'),(18,20,'verified','0'),(19,21,'verified','0'),(20,23,'verified','0'),(21,25,'verified','0'),(22,26,'verified','0'),(23,27,'verified','0'),(24,28,'verified','0'),(25,29,'verified','0'),(26,30,'verified','0');
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2016-06-04 16:16:47','2016-06-04 16:16:47','Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.',0,'1','','',0,0),(2,106,'Tawhidur Rahman','mahmuds2001@yahoo.com','','119.30.39.2','2017-12-16 13:41:39','2017-12-16 13:41:39','Hello Manager\r\nWe use yucca liquid in drinking water of poultry and in fish pond to reduce gas.\r\n1. Is your product applicable through water ?\r\n2. What is the saponin content ?\r\n3. Who is the manufacturer ?\r\n4. Available pack size ?\r\n5. Indicative price for CFR Chittagong ?',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','',0,0),(3,106,'Tawhidur Rahman','mahmuds2001@yahoo.com','','119.30.39.2','2017-12-16 13:43:30','2017-12-16 13:43:30','I am also interested about Choline chloride. Kindly give details: Specification, origin ? Pack size and indicative price for CFR Chittagong.\r\n\r\nRegards\r\nTawhid',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','',0,0),(4,1,'Randynop','alenapedra@yandex.com','http://baesjum2019.com','81.171.18.36','2019-06-16 19:11:19','2019-06-16 19:11:19','So basically, a PSN Code Generator',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',0,0),(5,126,'upuojarovoh','ehuxoxotw@email.namnerbca.com','','37.115.213.231','2019-07-22 20:49:57','2019-07-22 20:49:57','http://mewkid.net/order-amoxicillin/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicillin 500mg</a> vox.nazk.manomaybiochem.com.bqn.hl http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','',0,0),(6,126,'ilcojyvifl','erajeomu@email.namnerbca.com','','37.115.213.231','2019-07-22 21:15:14','2019-07-22 21:15:14','http://mewkid.net/order-amoxicillin/ - Amoxicillin 500 Mg <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Buy Amoxicillin Online</a> gzc.nfjy.manomaybiochem.com.hiy.ni http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','',0,0),(7,186,'Matsanvax','matqueene@belan.website','','31.184.238.248','2019-07-29 10:14:41','2019-07-29 10:14:41','Comprar Levitra Generico En Espana  <a href=\"http://etrobax.com\" rel=\"nofollow\">cialis tablets for sale</a> Meilleur Prix Cialis France Worldwide Clobetasol Lichen Planus Cod Internet Store Express Delivery Newcastle Amoxicillin 500mg Capsule',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',0,0),(8,186,'Matsanvax','matqueene@belan.website','','31.184.238.248','2019-08-01 15:39:36','2019-08-01 15:39:36','Comprare Cialis Con Paypal  <a href=\"http://drisdol.com\" rel=\"nofollow\">cialis 5 mg</a> Usa No Subscription Pharmacy Cialis Trial Offer',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',0,0),(9,186,'Matsanvax','matqueene@belan.website','','31.184.238.248','2019-08-04 08:14:23','2019-08-04 08:14:23','Acheter Kamagra Caen  <a href=\"http://cthosts.net\" rel=\"nofollow\">cheapest cialis 20mg</a> Amoxicillin Canadian Pharmacy',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','',0,0),(10,186,'Matsanvax','matqueene@belan.website','','31.184.238.248','2019-08-07 02:10:01','2019-08-07 02:10:01','Propecia Over The Counter Propecia Aragon Synthyroid Without A Prescription  <a href=\"http://catabs.com\" rel=\"nofollow\">priligy generico farmacia</a> Cialis Europe Farmacia Kamagra Vendita Acheter Cialis 10mg',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',0,0),(11,234,'uzagejeozeefl','acurebi@email.namnerbca.com','','37.115.200.164','2019-08-29 10:23:05','2019-08-29 10:23:05','http://mewkid.net/order-amoxicillin/ - Buy Amoxicillin Online <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicillin</a> kup.jmlq.manomaybiochem.com.vbu.pl http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','',0,0),(12,234,'oritavomixug','qivojupuw@email.namnerbca.com','','37.115.200.164','2019-08-29 10:43:47','2019-08-29 10:43:47','http://mewkid.net/order-amoxicillin/ - Amoxicillin Without Prescription <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicilline 500 Mg Online</a> ddv.ersy.manomaybiochem.com.rol.wa http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',0,0),(13,133,'atigubisu','ikudqud@email.namnerbca.com','','37.115.121.29','2019-09-17 07:22:31','2019-09-17 07:22:31','http://mewkid.net/order-amoxicillin/ - Online Amoxicillin <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicillin 500mg Capsules</a> esb.ncyt.manomaybiochem.com.cit.qj http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','',0,0),(14,133,'igidamhaq','ajezvbiuq@email.namnerbca.com','','37.115.121.29','2019-09-17 07:47:10','2019-09-17 07:47:10','http://mewkid.net/order-amoxicillin/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicillin 500mg Capsules</a> vsd.jfib.manomaybiochem.com.rlc.lj http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',0,0),(15,147,'awurna','ajermimu@gmail.com','','62.210.83.206','2019-09-18 20:47:18','2019-09-18 20:47:18','bWFub21heWJpb2NoZW0uY29t <a href=\'http://mewkid.net/order-cialis/#idonecu-a\' rel=\"nofollow\">idonecu-a.anchor.com</a> [URL=http://mewkid.net/order-cialis/#idonecu-u]idonecu-u.anchor.com[/URL] http://mewkid.net/order-cialis/#idonecu-t http://mewkid.net/order-cialis/#idonecu-t http://mewkid.net/order-cialis/#idonecu-t http://mewkid.net/order-cialis/#idonecu-t http://mewkid.net/order-cialis/#idonecu-t http://mewkid.net/order-cialis/#idonecu-t http://mewkid.net/order-cialis/#idonecu-t http://mewkid.net/order-cialis/#idonecu-t inocur',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20100101 Firefox/21.0','',0,0),(16,147,'ujanaxpj','opavji@pop3.namnerbca.com','','5.248.165.110','2019-09-19 00:23:56','2019-09-19 00:23:56','http://mewkid.net/order-amoxicillin/ - Amoxicillin Online <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicillin</a> gzf.amwf.manomaybiochem.com.rhg.ze http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',0,0),(17,147,'saujubeluune','itixez@pop3.namnerbca.com','','5.248.165.110','2019-09-19 00:50:12','2019-09-19 00:50:12','http://mewkid.net/order-amoxicillin/ - Amoxicillin 500 Mg <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicillin No Prescription</a> jvu.vxta.manomaybiochem.com.kyg.vy http://mewkid.net/order-amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','',0,0),(18,128,'oduamauj','haviogia@pop3.namnerbca.com','','37.115.197.74','2019-10-10 07:01:33','2019-10-10 07:01:33','http://mewkid.net/buy-xalanta/ - Amoxicillin 500mg <a href=\"http://mewkid.net/buy-xalanta/\" rel=\"nofollow\">Amoxicillin 500 Mg</a> nwx.tgfx.manomaybiochem.com.isc.oh http://mewkid.net/buy-xalanta/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',0,0),(19,128,'aluqimadahis','bulaslebe@pop3.namnerbca.com','','37.115.197.74','2019-10-10 07:26:44','2019-10-10 07:26:44','http://mewkid.net/buy-xalanta/ - Amoxicillin 500 Mg <a href=\"http://mewkid.net/buy-xalanta/\" rel=\"nofollow\">Buy Amoxil Online</a> anx.qudk.manomaybiochem.com.qqy.xs http://mewkid.net/buy-xalanta/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',0,0),(20,23,'Stanley','Stanley@gmail.com','','54.38.183.107','2019-10-11 12:24:51','2019-10-11 12:24:51','Hi, very nice website, cheers!\r\n------------------------------------------------------\r\nNeed cheap and reliable hosting? Our shared plans start at $10 for an year and VPS plans for $6/Mo.\r\n------------------------------------------------------\r\nCheck here: https://www.good-webhosting.com/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0','',0,0),(21,106,'Mohamed Mohsen Aboueldahab','egytrade79@yahoo.com','','197.35.48.238','2019-10-12 21:56:18','2019-10-12 21:56:18','Dear sir,\r\nI am Mohamed from Egypt\r\nI would like to ask aboupt\r\nPrice?\r\nSpesification?\r\nOf yucca liqed',0,'0','Mozilla/5.0 (Linux; Android 9; SM-N960F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.92 Mobile Safari/537.36','',0,0),(22,1,'Greggbeapy','letstrythissoft2019@i.ua','https://finway.com.ua/uk/','94.156.35.59','2019-10-14 04:57:58','2019-10-14 04:57:58','Хорошая статья',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','',0,0),(23,23,'BernardoptiP','ufupojerocib@carnuts.co.uk','','202.43.177.14','2019-11-28 13:58:28','2019-11-28 13:58:28','tarot card reading \r\ntarot reading \r\ntarot card meanings \r\ntarot card meanings list \r\nlove tarot reading \r\ntarot card meanings pdf \r\ntarot cards reading \r\none card tarot reading \r\nhow to do a tarot reading \r\ntarot card reading near me \r\n<a href=\'https://ericsundwall.com/tarot-card-reading-and-meanings/\' rel=\"nofollow\">https://ericsundwall.com/tarot-card-reading-and-meanings/</a> \r\ntarot card reading free \r\ntarot card reading meaning \r\ntarot card readings online \r\ntarot card reading love \r\ntarot card reading austin \r\ntarot card reading youtube \r\ntarot card reading nyc \r\ntarot card reading layout \r\ntarot card reading how to \r\ntarot card reading lotus \r\ntarot card reading accuracy \r\ntarot card reading aries \r\ntarot card reading accurate \r\ntarot card reading austin texas \r\ntarot card reading about love \r\ntarot card reading astrology \r\ntarot card reading aquarius \r\ntarot card reading a sin \r\na psychic card reading \r\na free tarot card reading \r\npick a tarot card reading \r\nis a tarot card reading accurate \r\ndo a tarot card reading \r\nhow a tarot card reading works \r\nhow does a tarot card reading work \r\nthe aeon tarot card reading \r\nwhat does a tarot card reading tell you \r\nthe moon tarot card reading \r\ntarot card reading boston',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','',0,0),(24,1,'AffiliateLabz','comments@affiliatelabz.com','https://affiliatelabz.com/special/?source=manomaybiochem.com','62.171.135.115','2020-02-16 01:07:34','2020-02-16 01:07:34','Great content! Super high-quality! Keep it up! :)',0,'0','Mozilla/5.0 (compatible; AffiliateLabz/1.0; +https://affiliatelabz.com/)','',0,0),(25,23,'BobbyAmino','john22@gmail.com','','181.48.7.146','2020-03-04 05:54:07','2020-03-04 05:54:07','behavioral interview Questions \r\nbehavioral interview Questions and answers \r\n<a href=\'https://rickylawson.com/behavioral-interview-questions-and-answers/\' rel=\"nofollow\">https://rickylawson.com/behavioral-interview-questions-and-answers/</a> \r\nbehavioral interview questions for managers \r\nbehavioral interview questions star \r\nbehavioral interview questions pdf \r\nbehavioral interview questions nursing \r\nbehavioral interview questions software engineer \r\nbehavioral interview questions amazon \r\nbehavioral interview questions reddit \r\nbehavioral interview questions examples \r\nbehavioral interview questions and answers nursing \r\nbehavioral interview questions and answers for customer service \r\nbehavioral interview questions and how to answer them \r\nbehavioral interview questions accounting \r\nbehavioral interview questions about teamwork \r\nbehavioral interview questions about communication \r\nbehavioral interview questions attention to detail \r\nbehavioral interview questions and sample answers \r\nthe behavioral interview questions and answers \r\nthe muse behavioral interview questions \r\nthe best behavioral interview questions \r\nthe balance behavioral interview questions \r\na list of behavioral interview questions \r\nthe hardest behavioral interview questions \r\nthe toughest behavioral interview questions \r\nbehavioral interview questions book \r\nbehavioral interview questions business analyst',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','',0,0),(26,10,'rickylawson','john22@gmail.com','','195.138.90.121','2020-03-13 00:56:29','2020-03-13 00:56:29','behavioral interview Questions \r\nbehavioral interview Questions and answers \r\n<a href=\'https://rickylawson.com/behavioral-interview-questions-and-answers/\' rel=\"nofollow\">https://rickylawson.com/behavioral-interview-questions-and-answers/</a> \r\nbehavioral interview questions for managers \r\nbehavioral interview questions star \r\nbehavioral interview questions pdf \r\nbehavioral interview questions nursing \r\nbehavioral interview questions software engineer \r\nbehavioral interview questions amazon \r\nbehavioral interview questions reddit \r\nbehavioral interview questions examples \r\nbehavioral interview questions and answers nursing \r\nbehavioral interview questions and answers for customer service \r\nbehavioral interview questions and how to answer them \r\nbehavioral interview questions accounting \r\nbehavioral interview questions about teamwork \r\nbehavioral interview questions about communication \r\nbehavioral interview questions attention to detail \r\nbehavioral interview questions and sample answers \r\nthe behavioral interview questions and answers \r\nthe muse behavioral interview questions \r\nthe best behavioral interview questions \r\nthe balance behavioral interview questions \r\na list of behavioral interview questions \r\nthe hardest behavioral interview questions \r\nthe toughest behavioral interview questions \r\nbehavioral interview questions book \r\nbehavioral interview questions business analyst',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',0,0),(27,23,'poradnikfaceta','lilirre34re@gmail.com','','195.18.224.6','2020-03-16 08:24:43','2020-03-16 08:24:43','https://poradnikfaceta.com \r\nDieta ketogeniczna \r\nhttp://bit.ly/38V4teK \r\nDieta na mase \r\nhttps://tinyurl.com/y8t752db \r\nJak odzyskac kobiete \r\nhttps://is.gd/qe371q \r\nJak poderwac dziewczyne',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',0,0),(28,10,'poradnikfaceta','lilirre34re@gmail.com','','212.109.39.180','2020-03-17 12:32:36','2020-03-17 12:32:36','https://poradnikfaceta.com \r\nDieta ketogeniczna \r\nhttp://bit.ly/38V4teK \r\nDieta na mase \r\nhttps://tinyurl.com/y8t752db \r\nJak odzyskac kobiete \r\nhttps://is.gd/qe371q \r\nJak poderwac dziewczyne',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','',0,0),(29,23,'poradnikfaceta','poradkki3@gmail.com','','188.27.137.163','2020-03-20 02:25:00','2020-03-20 02:25:00','https://poradnikfaceta.com/kiedy-one-odchodza/ \r\nhttps://poradnikfaceta.com/atrakcyjne-cechy-mezczyzny-zwracaja-uwage-kobiety/ \r\nhttps://poradnikfaceta.com/zerwala-toba-dziewczyna/ \r\nhttps://poradnikfaceta.com/one-zawsze-wracaja-czyli-tym-prawdy/ \r\njak poderwac dziewczyne https://poradnikfaceta.com/jak-poderwac-dziewczyne/ \r\nhttps://poradnikfaceta.com/dlaczego-moja-zona-chce-rozwodu/ \r\nDieta ketogeniczna https://poradnikfaceta.com/dieta-ketogeniczna-co-to-i-jakie-sa-jej-zalozenia/ \r\nDieta na mase https://poradnikfaceta.com/dieta-na-mase/ \r\njak odzyskac kobiete https://poradnikfaceta.com/odzyskac-byla-dziewczyne/ jak odzyskac dziewczyne',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',0,0),(30,10,'poradnikfaceta','poradkki3@gmail.com','','173.245.239.12','2020-03-22 19:06:35','2020-03-22 19:06:35','https://poradnikfaceta.com \r\n\"Love at First Love: A  Male  Digital Book\" by Kevin Adams is an eBook that is  focused on  males in  partnerships. This  book is  created by a  individual that is a married man. This is a bestseller on the market for a reason, there are many people  available that  requirement  aid with their relationships. If you  are among those  individuals  after that this  book will be of great benefit to you. \r\nhttps://poradnikfaceta.com/kiedy-one-odchodza/ \r\nhttps://poradnikfaceta.com/atrakcyjne-cechy-mezczyzny-zwracaja-uwage-kobiety/ \r\nhttps://poradnikfaceta.com/zerwala-toba-dziewczyna/ \r\nhttps://poradnikfaceta.com/one-zawsze-wracaja-czyli-tym-prawdy/ \r\n All of us  understand that there are  numerous  sort of relationships that exist. This  digital book is not targeting  any individual. It is targeting all  males that are  trying to find love. This is an  book that  will certainly be  made use of by guys  similar to you. The principles in this  digital book can  aid you in many  means.  Among those  means is  just how to bring your girl to the point where she will want to jump right into bed with you. This  e-book will teach you  just how to build that kind of relationship with women. \r\njak poderwac dziewczyne https://poradnikfaceta.com/jak-poderwac-dziewczyne/ \r\nhttps://poradnikfaceta.com/dlaczego-moja-zona-chce-rozwodu/ \r\nDieta ketogeniczna https://poradnikfaceta.com/dieta-ketogeniczna-co-to-i-jakie-sa-jej-zalozenia/ \r\nYou  will certainly  discover certain  points that you  will certainly not  pick up from the books in the stores. I think if you  put in the time to read the guide you will see the value. The love  initially romance system is  without a doubt the best. The  factor is  due to the fact that it  has actually been  utilized for so many years  as well as has a lot of  tested techniques. \r\nDieta na mase https://poradnikfaceta.com/dieta-na-mase/ \r\njak odzyskac kobiete https://poradnikfaceta.com/odzyskac-byla-dziewczyne/ jak odzyskac dziewczyne \r\n \r\nhttp://slnk.info/9mu8j \r\nhttps://frama.link/poradnikfaceta195593 \r\nhttp://freeurlredirect.com/1wru2 \r\nhttps://huit.re/poradnikfaceta33751 \r\nhttp://xsle.net/1vj9g \r\nhttps://slimex365.com/1ufgp \r\nhttps://onlineuniversalwork.com/1va95 \r\nhttp://s.qurdo.com/poradnikfaceta587707 \r\nhttps://darknesstr.com/1siy2 \r\nhttps://jtbtigers.com/1s2c5 \r\nhttps://ecuadortenisclub.com/1s60b \r\nhttps://bogazicitente.com/1sb0y \r\nhttps://1borsa.com/1s82n \r\nhttp://qr.garagebrewers.com/r.php?c=41zg',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=85775 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://manomaybiochem.com','yes'),(2,'home','http://manomaybiochem.com','yes'),(3,'blogname','Manomay Bio Chem','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@manomaybiochem.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','8','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','8','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'hack_file','0','yes'),(30,'blog_charset','UTF-8','yes'),(31,'moderation_keys','','no'),(32,'active_plugins','a:5:{i:0;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:1;s:35:\"image-watermark/image-watermark.php\";i:2;s:67:\"product-enquiry-for-woocommerce/product-enquiry-for-woocommerce.php\";i:3;s:27:\"woocommerce/woocommerce.php\";i:4;s:41:\"wordpress-importer/wordpress-importer.php\";}','yes'),(33,'category_base','','yes'),(34,'ping_sites','http://rpc.pingomatic.com/','yes'),(35,'comment_max_links','2','yes'),(36,'gmt_offset','0','yes'),(37,'default_email_category','1','yes'),(38,'recently_edited','a:2:{i:0;s:65:\"/home/manomrd6/public_html/wp-content/themes/zerif-lite/style.css\";i:2;s:0:\"\";}','no'),(39,'template','zerif-lite','yes'),(40,'stylesheet','zerif-lite','yes'),(41,'comment_whitelist','1','yes'),(42,'blacklist_keys','','no'),(43,'comment_registration','0','yes'),(44,'html_type','text/html','yes'),(45,'use_trackback','0','yes'),(46,'default_role','subscriber','yes'),(47,'db_version','38590','yes'),(48,'uploads_use_yearmonth_folders','1','yes'),(49,'upload_path','','yes'),(50,'blog_public','1','yes'),(51,'default_link_category','2','yes'),(52,'show_on_front','posts','yes'),(53,'tag_base','','yes'),(54,'show_avatars','1','yes'),(55,'avatar_rating','G','yes'),(56,'upload_url_path','','yes'),(57,'thumbnail_size_w','150','yes'),(58,'thumbnail_size_h','150','yes'),(59,'thumbnail_crop','1','yes'),(60,'medium_size_w','300','yes'),(61,'medium_size_h','300','yes'),(62,'avatar_default','mystery','yes'),(63,'large_size_w','1024','yes'),(64,'large_size_h','1024','yes'),(65,'image_default_link_type','none','yes'),(66,'image_default_size','','yes'),(67,'image_default_align','','yes'),(68,'close_comments_for_old_posts','0','yes'),(69,'close_comments_days_old','14','yes'),(70,'thread_comments','1','yes'),(71,'thread_comments_depth','5','yes'),(72,'page_comments','0','yes'),(73,'comments_per_page','50','yes'),(74,'default_comments_page','newest','yes'),(75,'comment_order','asc','yes'),(76,'sticky_posts','a:0:{}','yes'),(77,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'uninstall_plugins','a:0:{}','no'),(81,'timezone_string','','yes'),(82,'page_for_posts','0','yes'),(83,'page_on_front','0','yes'),(84,'default_post_format','0','yes'),(85,'link_manager_enabled','0','yes'),(86,'finished_splitting_shared_terms','1','yes'),(87,'site_icon','0','yes'),(88,'medium_large_size_w','768','yes'),(89,'medium_large_size_h','0','yes'),(90,'initial_db_version','35700','yes'),(91,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:132:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:16:\"aiosp_manage_seo\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:110:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}}','yes'),(92,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:28:\"woocommerce_product_search-2\";i:1;s:32:\"woocommerce_product_categories-2\";}s:15:\"sidebar-aboutus\";a:0:{}s:16:\"sidebar-ourfocus\";a:3:{i:0;s:17:\"ctup-ads-widget-5\";i:1;s:17:\"ctup-ads-widget-2\";i:2;s:17:\"ctup-ads-widget-7\";}s:20:\"sidebar-testimonials\";a:3:{i:0;s:21:\"zerif_testim-widget-2\";i:1;s:21:\"zerif_testim-widget-3\";i:2;s:21:\"zerif_testim-widget-4\";}s:15:\"sidebar-ourteam\";a:1:{i:0;s:19:\"zerif_team-widget-1\";}s:13:\"array_version\";i:3;}','yes'),(99,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'cron','a:12:{i:1594995020;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1594995030;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1594997080;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1594998101;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1595002607;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1595002622;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1595005820;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1595016620;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1595030400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1595080901;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596844800;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(121,'theme_mods_twentysixteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1465057073;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(122,'current_theme','Zerif Lite','yes'),(123,'theme_mods_zerif-lite','a:34:{s:10:\"zerif_logo\";s:72:\"http://manomaybiochem.com/wp-content/uploads/2016/06/Manomay-Biochem.jpg\";s:22:\"zerif_socials_linkedin\";s:0:\"\";s:21:\"zerif_socials_behance\";s:0:\"\";s:22:\"zerif_socials_dribbble\";s:0:\"\";s:11:\"zerif_email\";s:131:\"<a href=\"info@manomaybiochem.com\">info@manomaybiochem.com</a><br />\n<a href=\"manomaybiochem@gmail.com\">manomaybiochem@gmail.com</a>\";s:11:\"zerif_phone\";s:105:\" <a href=\"tel: +91 9890831870\">+91 9890831870</a><br />\n<a href=\"tel: +91 9422880672\">+91  9422880672</a>\";s:13:\"zerif_address\";s:49:\" Tidke Colony, \nNasik-422002, Maharashtra, India.\";s:20:\"zerif_bigtitle_title\";s:76:\"Manufacturing and supplying a wide range of high quality Biological Products\";s:30:\"zerif_bigtitle_redbutton_label\";s:0:\"\";s:32:\"zerif_bigtitle_greenbutton_label\";s:13:\"View Products\";s:30:\"zerif_bigtitle_greenbutton_url\";s:5:\"/shop\";s:19:\"zerif_parallax_show\";s:0:\"\";s:19:\"zerif_aboutus_title\";s:8:\"About Us\";s:22:\"zerif_aboutus_subtitle\";s:0:\"\";s:26:\"zerif_aboutus_biglefttitle\";s:52:\"Leading suppliers and exporters of organic chemicals\";s:18:\"zerif_aboutus_text\";s:468:\"It gives immense pleasure to introduce ourselves as one of the leading suppliers and exporters of organic chemicals. <br /><br />We are a Professional Manufacturing and Marketing Company engaged in sourcing and supplying a wide range of high quality Biological Products i.e. Yeast extract, Beef extract, Peptone, Protein Hydrolysate, and other. Those are widely applicable in Bacteriological Media Ingredients, Breweries, Distilleries and Bakery &amp; Confectionaries.\";s:28:\"zerif_aboutus_feature1_title\";s:0:\"\";s:25:\"zerif_aboutus_feature1_nr\";s:0:\"\";s:28:\"zerif_aboutus_feature2_title\";s:0:\"\";s:25:\"zerif_aboutus_feature2_nr\";s:0:\"\";s:28:\"zerif_aboutus_feature3_title\";s:0:\"\";s:25:\"zerif_aboutus_feature3_nr\";s:0:\"\";s:28:\"zerif_aboutus_feature4_title\";s:0:\"\";s:25:\"zerif_aboutus_feature4_nr\";s:0:\"\";s:18:\"zerif_ourteam_show\";s:1:\"1\";s:21:\"zerif_latestnews_show\";s:1:\"1\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:6;}s:21:\"zerif_contactus_email\";s:23:\"info@manomaybiochem.com\";s:19:\"zerif_ourfocus_show\";s:0:\"\";s:18:\"zerif_aboutus_show\";s:0:\"\";s:20:\"zerif_ourfocus_title\";s:8:\"Services\";s:23:\"zerif_ourfocus_subtitle\";s:0:\"\";s:16:\"background_image\";s:77:\"http://manomaybiochem.com/wp-content/uploads/2017/01/Chemical_Engineering.jpg\";s:18:\"custom_css_post_id\";i:-1;}','yes'),(124,'theme_switched','','yes'),(125,'widget_ctup-ads-widget','a:6:{i:2;a:4:{s:4:\"text\";s:114:\"We provide the industrial chemicals like Acetone, Boric Acid, Copper Sulfate , Silver Hydrogen(Water disinfectant)\";s:5:\"title\";s:20:\"Industrial Chemicals\";s:4:\"link\";s:0:\"\";s:9:\"image_uri\";s:63:\"http://manomaybiochem.com/wp-content/uploads/2017/02/images.png\";}i:3;a:4:{s:4:\"text\";s:164:\"Showcase your team, products, clients, about info, testimonials, latest posts from the blog, contact form, additional calls to action. Everything translation ready.\";s:5:\"title\";s:21:\"CUSTOM CONTENT BLOCKS\";s:4:\"link\";s:0:\"\";s:9:\"image_uri\";s:69:\"http://manomaybiochem.com/wp-content/themes/zerif-lite/images/ccc.png\";}i:4;a:4:{s:4:\"text\";s:186:\"Get new content blocks: pricing table, Google Maps, and more. Change the sections order, display each block exactly where you need it, customize the blocks with whatever colors you wish.\";s:5:\"title\";s:24:\"GO PRO FOR MORE FEATURES\";s:4:\"link\";s:0:\"\";s:9:\"image_uri\";s:73:\"http://manomaybiochem.com/wp-content/themes/zerif-lite/images/ti-logo.png\";}i:5;a:4:{s:4:\"text\";s:76:\"We provide the feed supplements like Yucca, Yeast, Pepton, Soya Pepton etc\r\n\";s:5:\"title\";s:21:\"Aqua Feed Supplements\";s:4:\"link\";s:0:\"\";s:9:\"image_uri\";s:71:\"http://manomaybiochem.com/wp-content/uploads/2017/02/conf_fish_feed.jpg\";}s:12:\"_multiwidget\";i:1;i:7;a:4:{s:4:\"text\";s:35:\"We provide the all types fish feed.\";s:5:\"title\";s:9:\"Fish Feed\";s:4:\"link\";s:0:\"\";s:9:\"image_uri\";s:67:\"http://manomaybiochem.com/wp-content/uploads/2017/05/FISH-Pic-2.png\";}}','yes'),(126,'widget_zerif_testim-widget','a:4:{i:2;a:5:{s:4:\"text\";s:226:\"We experience very high standards in regards to quality and service from Manomay Biochem, Nashik.  On-time delivery and adhering to set standards while supplying Yeast extract, Peptone, Tryptone, etc., are their strong points.\";s:5:\"title\";s:0:\"\";s:7:\"details\";s:0:\"\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:3;a:5:{s:4:\"text\";s:247:\"I fall short of words to explain how professionally our needs are addressed at Manomay Biochem.  They are just unbeatable in this regard. We have been using products from other vendors also, but Manomay Biochem always comes out with flying colors.\";s:5:\"title\";s:0:\"\";s:7:\"details\";s:0:\"\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:4;a:5:{s:4:\"text\";s:203:\"I just had to let you know how well we are served.  This quick short note is just to say thank you for the cordial service.  Your supply of Yucca liquid is just amazing in terms of quality.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\";s:5:\"title\";s:0:\"\";s:7:\"details\";s:0:\"\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_zerif_clients-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_zerif_team-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32603,'woocommerce_myaccount_orders_endpoint','orders','yes'),(32604,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(32605,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(32606,'woocommerce_single_image_width','600','yes'),(32607,'woocommerce_thumbnail_image_width','300','yes'),(32608,'woocommerce_checkout_highlight_required_fields','yes','yes'),(32610,'default_product_cat','20','yes'),(31774,'rewrite_rules','a:154:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:32:\"shop/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"shop/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"shop/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"shop/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"shop/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"shop/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"shop/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:25:\"shop/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:45:\"shop/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:40:\"shop/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:33:\"shop/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:40:\"shop/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:30:\"shop/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:36:\"shop/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"shop/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"shop/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:21:\"shop/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"shop/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"shop/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"shop/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"shop/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"shop/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(145,'category_children','a:0:{}','yes'),(132,'recently_activated','a:2:{s:81:\"woocommerce-email-inquiry-cart-options/woocommerce-email-inquiry-cart-options.php\";i:1531145609;s:59:\"woocommerce-catalog-enquiry/Woocommerce_Catalog_Enquiry.php\";i:1530963624;}','yes'),(32596,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(32597,'woocommerce_trash_pending_orders','','no'),(32598,'woocommerce_trash_failed_orders','','no'),(32599,'woocommerce_trash_cancelled_orders','','no'),(32600,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(32601,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(32602,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(147,'woocommerce_default_country','IN:MH','yes'),(148,'woocommerce_allowed_countries','all','yes'),(149,'woocommerce_specific_allowed_countries','','yes'),(150,'woocommerce_default_customer_address','geolocation','yes'),(151,'woocommerce_demo_store','no','yes'),(152,'woocommerce_demo_store_notice','This is a demo store for testing purposes &mdash; no orders shall be fulfilled.','no'),(153,'woocommerce_currency','INR','yes'),(154,'woocommerce_currency_pos','left','yes'),(155,'woocommerce_price_thousand_sep',',','yes'),(156,'woocommerce_price_decimal_sep','.','yes'),(32580,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32581,'current_theme_supports_woocommerce','yes','yes'),(32582,'woocommerce_queue_flush_rewrite_rules','no','yes'),(157,'woocommerce_price_num_decimals','2','yes'),(158,'woocommerce_weight_unit','kg','yes'),(159,'woocommerce_dimension_unit','cm','yes'),(160,'woocommerce_enable_review_rating','no','no'),(161,'woocommerce_review_rating_required','yes','no'),(162,'woocommerce_review_rating_verification_label','yes','no'),(163,'woocommerce_review_rating_verification_required','no','no'),(164,'woocommerce_shop_page_id','6','yes'),(165,'woocommerce_shop_page_display','','yes'),(166,'woocommerce_category_archive_display','','yes'),(167,'woocommerce_default_catalog_orderby','menu_order','yes'),(168,'woocommerce_cart_redirect_after_add','no','yes'),(169,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(170,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";i:1;}','yes'),(171,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:4:\"crop\";i:1;}','yes'),(172,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"180\";s:6:\"height\";s:3:\"180\";s:4:\"crop\";i:1;}','yes'),(173,'woocommerce_enable_lightbox','yes','yes'),(174,'woocommerce_manage_stock','yes','yes'),(175,'woocommerce_hold_stock_minutes','60','no'),(176,'woocommerce_notify_low_stock','yes','no'),(177,'woocommerce_notify_no_stock','yes','no'),(178,'woocommerce_stock_email_recipient','info@manomaybiochem.com','no'),(179,'woocommerce_notify_low_stock_amount','2','no'),(180,'woocommerce_notify_no_stock_amount','0','no'),(181,'woocommerce_hide_out_of_stock_items','no','yes'),(182,'woocommerce_stock_format','no_amount','yes'),(183,'woocommerce_file_download_method','force','no'),(184,'woocommerce_downloads_require_login','no','no'),(185,'woocommerce_downloads_grant_access_after_payment','yes','no'),(186,'woocommerce_calc_taxes','no','yes'),(187,'woocommerce_prices_include_tax','no','yes'),(188,'woocommerce_tax_based_on','shipping','yes'),(189,'woocommerce_shipping_tax_class','title','yes'),(190,'woocommerce_tax_round_at_subtotal','no','yes'),(191,'woocommerce_tax_classes','Reduced Rate\r\nZero Rate','yes'),(192,'woocommerce_tax_display_shop','excl','yes'),(193,'woocommerce_tax_display_cart','excl','no'),(194,'woocommerce_price_display_suffix','','yes'),(195,'woocommerce_tax_total_display','itemized','no'),(196,'woocommerce_enable_coupons','no','no'),(197,'woocommerce_calc_discounts_sequentially','no','no'),(198,'woocommerce_enable_guest_checkout','yes','no'),(199,'woocommerce_force_ssl_checkout','no','yes'),(200,'woocommerce_unforce_ssl_checkout','no','yes'),(201,'woocommerce_cart_page_id','7','yes'),(202,'woocommerce_checkout_page_id','8','yes'),(203,'woocommerce_terms_page_id','','no'),(204,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(205,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(206,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(207,'woocommerce_calc_shipping','no','yes'),(208,'woocommerce_enable_shipping_calc','yes','no'),(209,'woocommerce_shipping_cost_requires_address','no','no'),(210,'woocommerce_ship_to_destination','billing','no'),(211,'woocommerce_ship_to_countries','','yes'),(212,'woocommerce_specific_ship_to_countries','','yes'),(213,'woocommerce_myaccount_page_id','9','yes'),(214,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(215,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(216,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(217,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(218,'woocommerce_logout_endpoint','customer-logout','yes'),(219,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(220,'woocommerce_enable_myaccount_registration','no','no'),(221,'woocommerce_enable_checkout_login_reminder','yes','no'),(222,'woocommerce_registration_generate_username','yes','no'),(223,'woocommerce_registration_generate_password','no','no'),(224,'woocommerce_email_from_name','Manomay','no'),(225,'woocommerce_email_from_address','admin@manomaybiochem.com','no'),(226,'woocommerce_email_header_image','','no'),(227,'woocommerce_email_footer_text','Manomay - Powered by WooCommerce','no'),(228,'woocommerce_email_base_color','#557da1','no'),(229,'woocommerce_email_background_color','#f5f5f5','no'),(230,'woocommerce_email_body_background_color','#fdfdfd','no'),(231,'woocommerce_email_text_color','#505050','no'),(232,'woocommerce_api_enabled','yes','yes'),(276,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(234,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";}','yes'),(255,'woocommerce_meta_box_errors','a:0:{}','yes'),(237,'woocommerce_db_version','2.5.5','yes'),(32611,'woocommerce_version','3.4.3','yes'),(31775,'_transient_woocommerce_cache_excluded_uris','a:6:{i:0;s:3:\"p=7\";i:1;s:6:\"/cart/\";i:2;s:3:\"p=8\";i:3;s:10:\"/checkout/\";i:4;s:3:\"p=9\";i:5;s:12:\"/my-account/\";}','yes'),(241,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(242,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(243,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(244,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(245,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(246,'widget_woocommerce_product_categories','a:2:{i:2;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(247,'widget_woocommerce_product_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(248,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(249,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(250,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(251,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(252,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(253,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(263,'woocommerce_paypal_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(264,'woocommerce_cheque_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(265,'woocommerce_cod_settings','a:1:{s:7:\"enabled\";s:3:\"yes\";}','yes'),(266,'woocommerce_bacs_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(272,'_transient_product-transient-version','1569850001','yes'),(271,'_transient_product_query-transient-version','1569850001','yes'),(32609,'product_cat_children','a:0:{}','yes'),(280,'product_shipping_class_children','a:0:{}','yes'),(32569,'can_compress_scripts','1','no'),(7123,'aioseop_options','a:92:{s:16:\"aiosp_home_title\";s:0:\"\";s:22:\"aiosp_home_description\";s:0:\"\";s:20:\"aiosp_togglekeywords\";s:1:\"0\";s:19:\"aiosp_home_keywords\";s:0:\"\";s:26:\"aiosp_use_static_home_info\";s:1:\"0\";s:9:\"aiosp_can\";s:2:\"on\";s:30:\"aiosp_no_paged_canonical_links\";s:0:\"\";s:31:\"aiosp_customize_canonical_links\";s:0:\"\";s:20:\"aiosp_rewrite_titles\";s:1:\"1\";s:20:\"aiosp_force_rewrites\";s:1:\"1\";s:24:\"aiosp_use_original_title\";s:1:\"0\";s:16:\"aiosp_cap_titles\";s:2:\"on\";s:28:\"aiosp_home_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_page_title_format\";s:27:\"%page_title% | %blog_title%\";s:23:\"aiosp_post_title_format\";s:27:\"%post_title% | %blog_title%\";s:27:\"aiosp_category_title_format\";s:31:\"%category_title% | %blog_title%\";s:26:\"aiosp_archive_title_format\";s:30:\"%archive_title% | %blog_title%\";s:23:\"aiosp_date_title_format\";s:21:\"%date% | %blog_title%\";s:25:\"aiosp_author_title_format\";s:23:\"%author% | %blog_title%\";s:22:\"aiosp_tag_title_format\";s:20:\"%tag% | %blog_title%\";s:25:\"aiosp_search_title_format\";s:23:\"%search% | %blog_title%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:17:\"aiosp_enablecpost\";s:2:\"on\";s:17:\"aiosp_cpostactive\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:7:\"product\";}s:19:\"aiosp_cpostadvanced\";s:1:\"0\";s:18:\"aiosp_cpostnoindex\";s:0:\"\";s:19:\"aiosp_cpostnofollow\";s:0:\"\";s:16:\"aiosp_cpostnoodp\";s:0:\"\";s:17:\"aiosp_cpostnoydir\";s:0:\"\";s:17:\"aiosp_cposttitles\";s:0:\"\";s:21:\"aiosp_posttypecolumns\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:7:\"product\";}s:19:\"aiosp_google_verify\";s:0:\"\";s:17:\"aiosp_bing_verify\";s:0:\"\";s:22:\"aiosp_pinterest_verify\";s:0:\"\";s:22:\"aiosp_google_publisher\";s:0:\"\";s:28:\"aiosp_google_disable_profile\";s:0:\"\";s:29:\"aiosp_google_sitelinks_search\";s:0:\"\";s:26:\"aiosp_google_set_site_name\";s:0:\"\";s:30:\"aiosp_google_specify_site_name\";s:0:\"\";s:28:\"aiosp_google_author_advanced\";s:1:\"0\";s:28:\"aiosp_google_author_location\";a:1:{i:0;s:3:\"all\";}s:29:\"aiosp_google_enable_publisher\";s:2:\"on\";s:30:\"aiosp_google_specify_publisher\";s:0:\"\";s:25:\"aiosp_google_analytics_id\";s:13:\"UA-91656937-1\";s:25:\"aiosp_ga_advanced_options\";s:2:\"on\";s:15:\"aiosp_ga_domain\";s:18:\"manomaybiochem.com\";s:21:\"aiosp_ga_multi_domain\";s:0:\"\";s:21:\"aiosp_ga_addl_domains\";s:0:\"\";s:21:\"aiosp_ga_anonymize_ip\";s:0:\"\";s:28:\"aiosp_ga_display_advertising\";s:0:\"\";s:22:\"aiosp_ga_exclude_users\";a:1:{i:0;s:13:\"administrator\";}s:29:\"aiosp_ga_track_outbound_links\";s:0:\"\";s:25:\"aiosp_ga_link_attribution\";s:0:\"\";s:27:\"aiosp_ga_enhanced_ecommerce\";s:0:\"\";s:20:\"aiosp_use_categories\";s:2:\"on\";s:26:\"aiosp_use_tags_as_keywords\";s:2:\"on\";s:32:\"aiosp_dynamic_postspage_keywords\";s:2:\"on\";s:22:\"aiosp_category_noindex\";s:2:\"on\";s:26:\"aiosp_archive_date_noindex\";s:2:\"on\";s:28:\"aiosp_archive_author_noindex\";s:2:\"on\";s:18:\"aiosp_tags_noindex\";s:0:\"\";s:20:\"aiosp_search_noindex\";s:0:\"\";s:17:\"aiosp_404_noindex\";s:0:\"\";s:17:\"aiosp_tax_noindex\";s:0:\"\";s:23:\"aiosp_paginated_noindex\";s:0:\"\";s:24:\"aiosp_paginated_nofollow\";s:0:\"\";s:11:\"aiosp_noodp\";s:0:\"\";s:12:\"aiosp_noydir\";s:0:\"\";s:18:\"aiosp_skip_excerpt\";s:0:\"\";s:27:\"aiosp_generate_descriptions\";s:0:\"\";s:20:\"aiosp_run_shortcodes\";s:0:\"\";s:33:\"aiosp_hide_paginated_descriptions\";s:0:\"\";s:32:\"aiosp_dont_truncate_descriptions\";s:0:\"\";s:19:\"aiosp_schema_markup\";s:2:\"on\";s:20:\"aiosp_unprotect_meta\";s:0:\"\";s:33:\"aiosp_redirect_attachement_parent\";s:0:\"\";s:14:\"aiosp_ex_pages\";s:0:\"\";s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:21:\"aiosp_front_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:12:\"aiosp_do_log\";s:0:\"\";s:19:\"last_active_version\";s:5:\"2.6.1\";s:29:\"aiosp_attachment_title_format\";s:27:\"%post_title% | %blog_title%\";s:26:\"aiosp_product_title_format\";s:27:\"%post_title% | %blog_title%\";s:36:\"aiosp_product_variation_title_format\";s:27:\"%post_title% | %blog_title%\";s:29:\"aiosp_shop_order_title_format\";s:27:\"%post_title% | %blog_title%\";s:36:\"aiosp_shop_order_refund_title_format\";s:27:\"%post_title% | %blog_title%\";s:30:\"aiosp_shop_coupon_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_shop_webhook_title_format\";s:27:\"%post_title% | %blog_title%\";}','yes'),(21325,'_transient_orders-transient-version','1513431700','yes'),(19594,'image_watermark_version','1.6.4','no'),(7342,'checkout_process_options','','yes'),(7343,'checkout_page_options','','yes'),(7344,'account_endpoint_options','','yes'),(7345,'checkout_endpoint_options','','yes'),(7346,'payment_gateways_options','','yes'),(7347,'woocommerce_gateway_order','a:4:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;}','yes'),(19593,'image_watermark_options','a:5:{s:15:\"watermark_image\";a:16:{s:10:\"plugin_off\";b:1;s:19:\"manual_watermarking\";b:1;s:9:\"extension\";s:7:\"imagick\";s:15:\"frontend_active\";b:1;s:19:\"deactivation_delete\";b:0;s:8:\"position\";s:12:\"bottom_right\";s:12:\"offset_width\";i:0;s:13:\"offset_height\";i:0;s:3:\"url\";i:46;s:19:\"watermark_size_type\";i:2;s:14:\"absolute_width\";i:0;s:15:\"absolute_height\";i:0;s:5:\"width\";i:15;s:11:\"transparent\";i:33;s:7:\"quality\";i:90;s:11:\"jpeg_format\";s:8:\"baseline\";}s:12:\"watermark_on\";a:11:{s:4:\"full\";i:1;s:5:\"large\";i:1;s:6:\"medium\";i:1;s:12:\"medium_large\";i:1;s:20:\"post-thumbnail-large\";i:1;s:27:\"post-thumbnail-large-mobile\";i:1;s:26:\"post-thumbnail-large-table\";i:1;s:12:\"shop_catalog\";i:1;s:11:\"shop_single\";i:1;s:14:\"shop_thumbnail\";i:1;s:9:\"thumbnail\";i:1;}s:16:\"watermark_cpt_on\";a:1:{i:0;s:10:\"everywhere\";}s:16:\"image_protection\";a:3:{s:10:\"rightclick\";b:1;s:11:\"draganddrop\";b:1;s:9:\"forlogged\";b:1;}s:6:\"backup\";a:2:{s:12:\"backup_image\";b:1;s:14:\"backup_quality\";i:90;}}','no'),(84476,'_transient_timeout_wc_term_counts','1595842633','no'),(84477,'_transient_wc_term_counts','a:5:{i:9;s:0:\"\";i:10;s:0:\"\";i:8;s:0:\"\";i:20;s:1:\"4\";i:7;s:0:\"\";}','no'),(85341,'_transient_timeout_external_ip_address_197.238.174.66','1595024440','no'),(85342,'_transient_external_ip_address_197.238.174.66','103.211.216.130','no'),(85762,'_transient_timeout_wc_related_24','1595054488','no'),(85763,'_transient_wc_related_24','a:1:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=24\";a:0:{}}','no'),(397,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:5:\"/shop\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:1;}','yes'),(402,'product_measurement_options','','yes'),(403,'product_rating_options','','yes'),(406,'product_inventory_options','','yes'),(513,'wc_orders_quotes_google_font_list','a:712:{i:0;a:2:{s:4:\"name\";s:7:\"ABeeZee\";s:7:\"variant\";s:15:\":regular,italic\";}i:1;a:2:{s:4:\"name\";s:4:\"Abel\";s:7:\"variant\";s:8:\":regular\";}i:2;a:2:{s:4:\"name\";s:13:\"Abril Fatface\";s:7:\"variant\";s:8:\":regular\";}i:3;a:2:{s:4:\"name\";s:8:\"Aclonica\";s:7:\"variant\";s:8:\":regular\";}i:4;a:2:{s:4:\"name\";s:4:\"Acme\";s:7:\"variant\";s:8:\":regular\";}i:5;a:2:{s:4:\"name\";s:5:\"Actor\";s:7:\"variant\";s:8:\":regular\";}i:6;a:2:{s:4:\"name\";s:7:\"Adamina\";s:7:\"variant\";s:8:\":regular\";}i:7;a:2:{s:4:\"name\";s:10:\"Advent Pro\";s:7:\"variant\";s:32:\":100,200,300,regular,500,600,700\";}i:8;a:2:{s:4:\"name\";s:15:\"Aguafina Script\";s:7:\"variant\";s:8:\":regular\";}i:9;a:2:{s:4:\"name\";s:7:\"Akronim\";s:7:\"variant\";s:8:\":regular\";}i:10;a:2:{s:4:\"name\";s:6:\"Aladin\";s:7:\"variant\";s:8:\":regular\";}i:11;a:2:{s:4:\"name\";s:7:\"Aldrich\";s:7:\"variant\";s:8:\":regular\";}i:12;a:2:{s:4:\"name\";s:4:\"Alef\";s:7:\"variant\";s:12:\":regular,700\";}i:13;a:2:{s:4:\"name\";s:8:\"Alegreya\";s:7:\"variant\";s:43:\":regular,italic,700,700italic,900,900italic\";}i:14;a:2:{s:4:\"name\";s:11:\"Alegreya SC\";s:7:\"variant\";s:43:\":regular,italic,700,700italic,900,900italic\";}i:15;a:2:{s:4:\"name\";s:13:\"Alegreya Sans\";s:7:\"variant\";s:99:\":100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,800,800italic,900,900italic\";}i:16;a:2:{s:4:\"name\";s:16:\"Alegreya Sans SC\";s:7:\"variant\";s:99:\":100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,800,800italic,900,900italic\";}i:17;a:2:{s:4:\"name\";s:10:\"Alex Brush\";s:7:\"variant\";s:8:\":regular\";}i:18;a:2:{s:4:\"name\";s:13:\"Alfa Slab One\";s:7:\"variant\";s:8:\":regular\";}i:19;a:2:{s:4:\"name\";s:5:\"Alice\";s:7:\"variant\";s:8:\":regular\";}i:20;a:2:{s:4:\"name\";s:5:\"Alike\";s:7:\"variant\";s:8:\":regular\";}i:21;a:2:{s:4:\"name\";s:13:\"Alike Angular\";s:7:\"variant\";s:8:\":regular\";}i:22;a:2:{s:4:\"name\";s:5:\"Allan\";s:7:\"variant\";s:12:\":regular,700\";}i:23;a:2:{s:4:\"name\";s:7:\"Allerta\";s:7:\"variant\";s:8:\":regular\";}i:24;a:2:{s:4:\"name\";s:15:\"Allerta Stencil\";s:7:\"variant\";s:8:\":regular\";}i:25;a:2:{s:4:\"name\";s:6:\"Allura\";s:7:\"variant\";s:8:\":regular\";}i:26;a:2:{s:4:\"name\";s:8:\"Almendra\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:27;a:2:{s:4:\"name\";s:16:\"Almendra Display\";s:7:\"variant\";s:8:\":regular\";}i:28;a:2:{s:4:\"name\";s:11:\"Almendra SC\";s:7:\"variant\";s:8:\":regular\";}i:29;a:2:{s:4:\"name\";s:8:\"Amarante\";s:7:\"variant\";s:8:\":regular\";}i:30;a:2:{s:4:\"name\";s:8:\"Amaranth\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:31;a:2:{s:4:\"name\";s:9:\"Amatic SC\";s:7:\"variant\";s:12:\":regular,700\";}i:32;a:2:{s:4:\"name\";s:9:\"Amethysta\";s:7:\"variant\";s:8:\":regular\";}i:33;a:2:{s:4:\"name\";s:5:\"Amiri\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:34;a:2:{s:4:\"name\";s:5:\"Amita\";s:7:\"variant\";s:12:\":regular,700\";}i:35;a:2:{s:4:\"name\";s:7:\"Anaheim\";s:7:\"variant\";s:8:\":regular\";}i:36;a:2:{s:4:\"name\";s:6:\"Andada\";s:7:\"variant\";s:8:\":regular\";}i:37;a:2:{s:4:\"name\";s:6:\"Andika\";s:7:\"variant\";s:8:\":regular\";}i:38;a:2:{s:4:\"name\";s:6:\"Angkor\";s:7:\"variant\";s:8:\":regular\";}i:39;a:2:{s:4:\"name\";s:24:\"Annie Use Your Telescope\";s:7:\"variant\";s:8:\":regular\";}i:40;a:2:{s:4:\"name\";s:13:\"Anonymous Pro\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:41;a:2:{s:4:\"name\";s:5:\"Antic\";s:7:\"variant\";s:8:\":regular\";}i:42;a:2:{s:4:\"name\";s:12:\"Antic Didone\";s:7:\"variant\";s:8:\":regular\";}i:43;a:2:{s:4:\"name\";s:10:\"Antic Slab\";s:7:\"variant\";s:8:\":regular\";}i:44;a:2:{s:4:\"name\";s:5:\"Anton\";s:7:\"variant\";s:8:\":regular\";}i:45;a:2:{s:4:\"name\";s:6:\"Arapey\";s:7:\"variant\";s:15:\":regular,italic\";}i:46;a:2:{s:4:\"name\";s:7:\"Arbutus\";s:7:\"variant\";s:8:\":regular\";}i:47;a:2:{s:4:\"name\";s:12:\"Arbutus Slab\";s:7:\"variant\";s:8:\":regular\";}i:48;a:2:{s:4:\"name\";s:19:\"Architects Daughter\";s:7:\"variant\";s:8:\":regular\";}i:49;a:2:{s:4:\"name\";s:13:\"Archivo Black\";s:7:\"variant\";s:8:\":regular\";}i:50;a:2:{s:4:\"name\";s:14:\"Archivo Narrow\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:51;a:2:{s:4:\"name\";s:5:\"Arimo\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:52;a:2:{s:4:\"name\";s:8:\"Arizonia\";s:7:\"variant\";s:8:\":regular\";}i:53;a:2:{s:4:\"name\";s:6:\"Armata\";s:7:\"variant\";s:8:\":regular\";}i:54;a:2:{s:4:\"name\";s:8:\"Artifika\";s:7:\"variant\";s:8:\":regular\";}i:55;a:2:{s:4:\"name\";s:4:\"Arvo\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:56;a:2:{s:4:\"name\";s:4:\"Arya\";s:7:\"variant\";s:12:\":regular,700\";}i:57;a:2:{s:4:\"name\";s:4:\"Asap\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:58;a:2:{s:4:\"name\";s:5:\"Asset\";s:7:\"variant\";s:8:\":regular\";}i:59;a:2:{s:4:\"name\";s:7:\"Astloch\";s:7:\"variant\";s:12:\":regular,700\";}i:60;a:2:{s:4:\"name\";s:4:\"Asul\";s:7:\"variant\";s:12:\":regular,700\";}i:61;a:2:{s:4:\"name\";s:10:\"Atomic Age\";s:7:\"variant\";s:8:\":regular\";}i:62;a:2:{s:4:\"name\";s:6:\"Aubrey\";s:7:\"variant\";s:8:\":regular\";}i:63;a:2:{s:4:\"name\";s:9:\"Audiowide\";s:7:\"variant\";s:8:\":regular\";}i:64;a:2:{s:4:\"name\";s:10:\"Autour One\";s:7:\"variant\";s:8:\":regular\";}i:65;a:2:{s:4:\"name\";s:7:\"Average\";s:7:\"variant\";s:8:\":regular\";}i:66;a:2:{s:4:\"name\";s:12:\"Average Sans\";s:7:\"variant\";s:8:\":regular\";}i:67;a:2:{s:4:\"name\";s:19:\"Averia Gruesa Libre\";s:7:\"variant\";s:8:\":regular\";}i:68;a:2:{s:4:\"name\";s:12:\"Averia Libre\";s:7:\"variant\";s:43:\":300,300italic,regular,italic,700,700italic\";}i:69;a:2:{s:4:\"name\";s:17:\"Averia Sans Libre\";s:7:\"variant\";s:43:\":300,300italic,regular,italic,700,700italic\";}i:70;a:2:{s:4:\"name\";s:18:\"Averia Serif Libre\";s:7:\"variant\";s:43:\":300,300italic,regular,italic,700,700italic\";}i:71;a:2:{s:4:\"name\";s:10:\"Bad Script\";s:7:\"variant\";s:8:\":regular\";}i:72;a:2:{s:4:\"name\";s:9:\"Balthazar\";s:7:\"variant\";s:8:\":regular\";}i:73;a:2:{s:4:\"name\";s:7:\"Bangers\";s:7:\"variant\";s:8:\":regular\";}i:74;a:2:{s:4:\"name\";s:5:\"Basic\";s:7:\"variant\";s:8:\":regular\";}i:75;a:2:{s:4:\"name\";s:10:\"Battambang\";s:7:\"variant\";s:12:\":regular,700\";}i:76;a:2:{s:4:\"name\";s:7:\"Baumans\";s:7:\"variant\";s:8:\":regular\";}i:77;a:2:{s:4:\"name\";s:5:\"Bayon\";s:7:\"variant\";s:8:\":regular\";}i:78;a:2:{s:4:\"name\";s:8:\"Belgrano\";s:7:\"variant\";s:8:\":regular\";}i:79;a:2:{s:4:\"name\";s:7:\"Belleza\";s:7:\"variant\";s:8:\":regular\";}i:80;a:2:{s:4:\"name\";s:9:\"BenchNine\";s:7:\"variant\";s:16:\":300,regular,700\";}i:81;a:2:{s:4:\"name\";s:7:\"Bentham\";s:7:\"variant\";s:8:\":regular\";}i:82;a:2:{s:4:\"name\";s:15:\"Berkshire Swash\";s:7:\"variant\";s:8:\":regular\";}i:83;a:2:{s:4:\"name\";s:5:\"Bevan\";s:7:\"variant\";s:8:\":regular\";}i:84;a:2:{s:4:\"name\";s:13:\"Bigelow Rules\";s:7:\"variant\";s:8:\":regular\";}i:85;a:2:{s:4:\"name\";s:11:\"Bigshot One\";s:7:\"variant\";s:8:\":regular\";}i:86;a:2:{s:4:\"name\";s:5:\"Bilbo\";s:7:\"variant\";s:8:\":regular\";}i:87;a:2:{s:4:\"name\";s:16:\"Bilbo Swash Caps\";s:7:\"variant\";s:8:\":regular\";}i:88;a:2:{s:4:\"name\";s:7:\"Biryani\";s:7:\"variant\";s:32:\":200,300,regular,600,700,800,900\";}i:89;a:2:{s:4:\"name\";s:6:\"Bitter\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:90;a:2:{s:4:\"name\";s:13:\"Black Ops One\";s:7:\"variant\";s:8:\":regular\";}i:91;a:2:{s:4:\"name\";s:5:\"Bokor\";s:7:\"variant\";s:8:\":regular\";}i:92;a:2:{s:4:\"name\";s:6:\"Bonbon\";s:7:\"variant\";s:8:\":regular\";}i:93;a:2:{s:4:\"name\";s:8:\"Boogaloo\";s:7:\"variant\";s:8:\":regular\";}i:94;a:2:{s:4:\"name\";s:10:\"Bowlby One\";s:7:\"variant\";s:8:\":regular\";}i:95;a:2:{s:4:\"name\";s:13:\"Bowlby One SC\";s:7:\"variant\";s:8:\":regular\";}i:96;a:2:{s:4:\"name\";s:7:\"Brawler\";s:7:\"variant\";s:8:\":regular\";}i:97;a:2:{s:4:\"name\";s:10:\"Bree Serif\";s:7:\"variant\";s:8:\":regular\";}i:98;a:2:{s:4:\"name\";s:14:\"Bubblegum Sans\";s:7:\"variant\";s:8:\":regular\";}i:99;a:2:{s:4:\"name\";s:11:\"Bubbler One\";s:7:\"variant\";s:8:\":regular\";}i:100;a:2:{s:4:\"name\";s:4:\"Buda\";s:7:\"variant\";s:4:\":300\";}i:101;a:2:{s:4:\"name\";s:7:\"Buenard\";s:7:\"variant\";s:12:\":regular,700\";}i:102;a:2:{s:4:\"name\";s:10:\"Butcherman\";s:7:\"variant\";s:8:\":regular\";}i:103;a:2:{s:4:\"name\";s:14:\"Butterfly Kids\";s:7:\"variant\";s:8:\":regular\";}i:104;a:2:{s:4:\"name\";s:5:\"Cabin\";s:7:\"variant\";s:57:\":regular,italic,500,500italic,600,600italic,700,700italic\";}i:105;a:2:{s:4:\"name\";s:15:\"Cabin Condensed\";s:7:\"variant\";s:20:\":regular,500,600,700\";}i:106;a:2:{s:4:\"name\";s:12:\"Cabin Sketch\";s:7:\"variant\";s:12:\":regular,700\";}i:107;a:2:{s:4:\"name\";s:15:\"Caesar Dressing\";s:7:\"variant\";s:8:\":regular\";}i:108;a:2:{s:4:\"name\";s:10:\"Cagliostro\";s:7:\"variant\";s:8:\":regular\";}i:109;a:2:{s:4:\"name\";s:14:\"Calligraffitti\";s:7:\"variant\";s:8:\":regular\";}i:110;a:2:{s:4:\"name\";s:6:\"Cambay\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:111;a:2:{s:4:\"name\";s:5:\"Cambo\";s:7:\"variant\";s:8:\":regular\";}i:112;a:2:{s:4:\"name\";s:6:\"Candal\";s:7:\"variant\";s:8:\":regular\";}i:113;a:2:{s:4:\"name\";s:9:\"Cantarell\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:114;a:2:{s:4:\"name\";s:11:\"Cantata One\";s:7:\"variant\";s:8:\":regular\";}i:115;a:2:{s:4:\"name\";s:11:\"Cantora One\";s:7:\"variant\";s:8:\":regular\";}i:116;a:2:{s:4:\"name\";s:8:\"Capriola\";s:7:\"variant\";s:8:\":regular\";}i:117;a:2:{s:4:\"name\";s:5:\"Cardo\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:118;a:2:{s:4:\"name\";s:5:\"Carme\";s:7:\"variant\";s:8:\":regular\";}i:119;a:2:{s:4:\"name\";s:14:\"Carrois Gothic\";s:7:\"variant\";s:8:\":regular\";}i:120;a:2:{s:4:\"name\";s:17:\"Carrois Gothic SC\";s:7:\"variant\";s:8:\":regular\";}i:121;a:2:{s:4:\"name\";s:10:\"Carter One\";s:7:\"variant\";s:8:\":regular\";}i:122;a:2:{s:4:\"name\";s:6:\"Caudex\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:123;a:2:{s:4:\"name\";s:18:\"Cedarville Cursive\";s:7:\"variant\";s:8:\":regular\";}i:124;a:2:{s:4:\"name\";s:11:\"Ceviche One\";s:7:\"variant\";s:8:\":regular\";}i:125;a:2:{s:4:\"name\";s:10:\"Changa One\";s:7:\"variant\";s:15:\":regular,italic\";}i:126;a:2:{s:4:\"name\";s:6:\"Chango\";s:7:\"variant\";s:8:\":regular\";}i:127;a:2:{s:4:\"name\";s:18:\"Chau Philomene One\";s:7:\"variant\";s:15:\":regular,italic\";}i:128;a:2:{s:4:\"name\";s:9:\"Chela One\";s:7:\"variant\";s:8:\":regular\";}i:129;a:2:{s:4:\"name\";s:14:\"Chelsea Market\";s:7:\"variant\";s:8:\":regular\";}i:130;a:2:{s:4:\"name\";s:6:\"Chenla\";s:7:\"variant\";s:8:\":regular\";}i:131;a:2:{s:4:\"name\";s:17:\"Cherry Cream Soda\";s:7:\"variant\";s:8:\":regular\";}i:132;a:2:{s:4:\"name\";s:12:\"Cherry Swash\";s:7:\"variant\";s:12:\":regular,700\";}i:133;a:2:{s:4:\"name\";s:5:\"Chewy\";s:7:\"variant\";s:8:\":regular\";}i:134;a:2:{s:4:\"name\";s:6:\"Chicle\";s:7:\"variant\";s:8:\":regular\";}i:135;a:2:{s:4:\"name\";s:5:\"Chivo\";s:7:\"variant\";s:29:\":regular,italic,900,900italic\";}i:136;a:2:{s:4:\"name\";s:6:\"Cinzel\";s:7:\"variant\";s:16:\":regular,700,900\";}i:137;a:2:{s:4:\"name\";s:17:\"Cinzel Decorative\";s:7:\"variant\";s:16:\":regular,700,900\";}i:138;a:2:{s:4:\"name\";s:14:\"Clicker Script\";s:7:\"variant\";s:8:\":regular\";}i:139;a:2:{s:4:\"name\";s:4:\"Coda\";s:7:\"variant\";s:12:\":regular,800\";}i:140;a:2:{s:4:\"name\";s:12:\"Coda Caption\";s:7:\"variant\";s:4:\":800\";}i:141;a:2:{s:4:\"name\";s:8:\"Codystar\";s:7:\"variant\";s:12:\":300,regular\";}i:142;a:2:{s:4:\"name\";s:5:\"Combo\";s:7:\"variant\";s:8:\":regular\";}i:143;a:2:{s:4:\"name\";s:9:\"Comfortaa\";s:7:\"variant\";s:16:\":300,regular,700\";}i:144;a:2:{s:4:\"name\";s:11:\"Coming Soon\";s:7:\"variant\";s:8:\":regular\";}i:145;a:2:{s:4:\"name\";s:11:\"Concert One\";s:7:\"variant\";s:8:\":regular\";}i:146;a:2:{s:4:\"name\";s:9:\"Condiment\";s:7:\"variant\";s:8:\":regular\";}i:147;a:2:{s:4:\"name\";s:7:\"Content\";s:7:\"variant\";s:12:\":regular,700\";}i:148;a:2:{s:4:\"name\";s:12:\"Contrail One\";s:7:\"variant\";s:8:\":regular\";}i:149;a:2:{s:4:\"name\";s:11:\"Convergence\";s:7:\"variant\";s:8:\":regular\";}i:150;a:2:{s:4:\"name\";s:6:\"Cookie\";s:7:\"variant\";s:8:\":regular\";}i:151;a:2:{s:4:\"name\";s:5:\"Copse\";s:7:\"variant\";s:8:\":regular\";}i:152;a:2:{s:4:\"name\";s:6:\"Corben\";s:7:\"variant\";s:12:\":regular,700\";}i:153;a:2:{s:4:\"name\";s:9:\"Courgette\";s:7:\"variant\";s:8:\":regular\";}i:154;a:2:{s:4:\"name\";s:7:\"Cousine\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:155;a:2:{s:4:\"name\";s:8:\"Coustard\";s:7:\"variant\";s:12:\":regular,900\";}i:156;a:2:{s:4:\"name\";s:21:\"Covered By Your Grace\";s:7:\"variant\";s:8:\":regular\";}i:157;a:2:{s:4:\"name\";s:12:\"Crafty Girls\";s:7:\"variant\";s:8:\":regular\";}i:158;a:2:{s:4:\"name\";s:9:\"Creepster\";s:7:\"variant\";s:8:\":regular\";}i:159;a:2:{s:4:\"name\";s:11:\"Crete Round\";s:7:\"variant\";s:15:\":regular,italic\";}i:160;a:2:{s:4:\"name\";s:12:\"Crimson Text\";s:7:\"variant\";s:43:\":regular,italic,600,600italic,700,700italic\";}i:161;a:2:{s:4:\"name\";s:13:\"Croissant One\";s:7:\"variant\";s:8:\":regular\";}i:162;a:2:{s:4:\"name\";s:7:\"Crushed\";s:7:\"variant\";s:8:\":regular\";}i:163;a:2:{s:4:\"name\";s:6:\"Cuprum\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:164;a:2:{s:4:\"name\";s:6:\"Cutive\";s:7:\"variant\";s:8:\":regular\";}i:165;a:2:{s:4:\"name\";s:11:\"Cutive Mono\";s:7:\"variant\";s:8:\":regular\";}i:166;a:2:{s:4:\"name\";s:6:\"Damion\";s:7:\"variant\";s:8:\":regular\";}i:167;a:2:{s:4:\"name\";s:14:\"Dancing Script\";s:7:\"variant\";s:12:\":regular,700\";}i:168;a:2:{s:4:\"name\";s:7:\"Dangrek\";s:7:\"variant\";s:8:\":regular\";}i:169;a:2:{s:4:\"name\";s:20:\"Dawning of a New Day\";s:7:\"variant\";s:8:\":regular\";}i:170;a:2:{s:4:\"name\";s:8:\"Days One\";s:7:\"variant\";s:8:\":regular\";}i:171;a:2:{s:4:\"name\";s:5:\"Dekko\";s:7:\"variant\";s:8:\":regular\";}i:172;a:2:{s:4:\"name\";s:6:\"Delius\";s:7:\"variant\";s:8:\":regular\";}i:173;a:2:{s:4:\"name\";s:17:\"Delius Swash Caps\";s:7:\"variant\";s:8:\":regular\";}i:174;a:2:{s:4:\"name\";s:14:\"Delius Unicase\";s:7:\"variant\";s:12:\":regular,700\";}i:175;a:2:{s:4:\"name\";s:13:\"Della Respira\";s:7:\"variant\";s:8:\":regular\";}i:176;a:2:{s:4:\"name\";s:8:\"Denk One\";s:7:\"variant\";s:8:\":regular\";}i:177;a:2:{s:4:\"name\";s:10:\"Devonshire\";s:7:\"variant\";s:8:\":regular\";}i:178;a:2:{s:4:\"name\";s:8:\"Dhurjati\";s:7:\"variant\";s:8:\":regular\";}i:179;a:2:{s:4:\"name\";s:13:\"Didact Gothic\";s:7:\"variant\";s:8:\":regular\";}i:180;a:2:{s:4:\"name\";s:9:\"Diplomata\";s:7:\"variant\";s:8:\":regular\";}i:181;a:2:{s:4:\"name\";s:12:\"Diplomata SC\";s:7:\"variant\";s:8:\":regular\";}i:182;a:2:{s:4:\"name\";s:6:\"Domine\";s:7:\"variant\";s:12:\":regular,700\";}i:183;a:2:{s:4:\"name\";s:11:\"Donegal One\";s:7:\"variant\";s:8:\":regular\";}i:184;a:2:{s:4:\"name\";s:10:\"Doppio One\";s:7:\"variant\";s:8:\":regular\";}i:185;a:2:{s:4:\"name\";s:5:\"Dorsa\";s:7:\"variant\";s:8:\":regular\";}i:186;a:2:{s:4:\"name\";s:5:\"Dosis\";s:7:\"variant\";s:32:\":200,300,regular,500,600,700,800\";}i:187;a:2:{s:4:\"name\";s:11:\"Dr Sugiyama\";s:7:\"variant\";s:8:\":regular\";}i:188;a:2:{s:4:\"name\";s:10:\"Droid Sans\";s:7:\"variant\";s:12:\":regular,700\";}i:189;a:2:{s:4:\"name\";s:15:\"Droid Sans Mono\";s:7:\"variant\";s:8:\":regular\";}i:190;a:2:{s:4:\"name\";s:11:\"Droid Serif\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:191;a:2:{s:4:\"name\";s:9:\"Duru Sans\";s:7:\"variant\";s:8:\":regular\";}i:192;a:2:{s:4:\"name\";s:9:\"Dynalight\";s:7:\"variant\";s:8:\":regular\";}i:193;a:2:{s:4:\"name\";s:11:\"EB Garamond\";s:7:\"variant\";s:8:\":regular\";}i:194;a:2:{s:4:\"name\";s:10:\"Eagle Lake\";s:7:\"variant\";s:8:\":regular\";}i:195;a:2:{s:4:\"name\";s:5:\"Eater\";s:7:\"variant\";s:8:\":regular\";}i:196;a:2:{s:4:\"name\";s:9:\"Economica\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:197;a:2:{s:4:\"name\";s:8:\"Ek Mukta\";s:7:\"variant\";s:32:\":200,300,regular,500,600,700,800\";}i:198;a:2:{s:4:\"name\";s:11:\"Electrolize\";s:7:\"variant\";s:8:\":regular\";}i:199;a:2:{s:4:\"name\";s:5:\"Elsie\";s:7:\"variant\";s:12:\":regular,900\";}i:200;a:2:{s:4:\"name\";s:16:\"Elsie Swash Caps\";s:7:\"variant\";s:12:\":regular,900\";}i:201;a:2:{s:4:\"name\";s:11:\"Emblema One\";s:7:\"variant\";s:8:\":regular\";}i:202;a:2:{s:4:\"name\";s:12:\"Emilys Candy\";s:7:\"variant\";s:8:\":regular\";}i:203;a:2:{s:4:\"name\";s:10:\"Engagement\";s:7:\"variant\";s:8:\":regular\";}i:204;a:2:{s:4:\"name\";s:9:\"Englebert\";s:7:\"variant\";s:8:\":regular\";}i:205;a:2:{s:4:\"name\";s:9:\"Enriqueta\";s:7:\"variant\";s:12:\":regular,700\";}i:206;a:2:{s:4:\"name\";s:9:\"Erica One\";s:7:\"variant\";s:8:\":regular\";}i:207;a:2:{s:4:\"name\";s:7:\"Esteban\";s:7:\"variant\";s:8:\":regular\";}i:208;a:2:{s:4:\"name\";s:15:\"Euphoria Script\";s:7:\"variant\";s:8:\":regular\";}i:209;a:2:{s:4:\"name\";s:5:\"Ewert\";s:7:\"variant\";s:8:\":regular\";}i:210;a:2:{s:4:\"name\";s:3:\"Exo\";s:7:\"variant\";s:127:\":100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}i:211;a:2:{s:4:\"name\";s:5:\"Exo 2\";s:7:\"variant\";s:127:\":100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}i:212;a:2:{s:4:\"name\";s:13:\"Expletus Sans\";s:7:\"variant\";s:57:\":regular,italic,500,500italic,600,600italic,700,700italic\";}i:213;a:2:{s:4:\"name\";s:12:\"Fanwood Text\";s:7:\"variant\";s:15:\":regular,italic\";}i:214;a:2:{s:4:\"name\";s:9:\"Fascinate\";s:7:\"variant\";s:8:\":regular\";}i:215;a:2:{s:4:\"name\";s:16:\"Fascinate Inline\";s:7:\"variant\";s:8:\":regular\";}i:216;a:2:{s:4:\"name\";s:10:\"Faster One\";s:7:\"variant\";s:8:\":regular\";}i:217;a:2:{s:4:\"name\";s:8:\"Fasthand\";s:7:\"variant\";s:8:\":regular\";}i:218;a:2:{s:4:\"name\";s:9:\"Fauna One\";s:7:\"variant\";s:8:\":regular\";}i:219;a:2:{s:4:\"name\";s:8:\"Federant\";s:7:\"variant\";s:8:\":regular\";}i:220;a:2:{s:4:\"name\";s:6:\"Federo\";s:7:\"variant\";s:8:\":regular\";}i:221;a:2:{s:4:\"name\";s:6:\"Felipa\";s:7:\"variant\";s:8:\":regular\";}i:222;a:2:{s:4:\"name\";s:5:\"Fenix\";s:7:\"variant\";s:8:\":regular\";}i:223;a:2:{s:4:\"name\";s:12:\"Finger Paint\";s:7:\"variant\";s:8:\":regular\";}i:224;a:2:{s:4:\"name\";s:9:\"Fira Mono\";s:7:\"variant\";s:12:\":regular,700\";}i:225;a:2:{s:4:\"name\";s:9:\"Fira Sans\";s:7:\"variant\";s:57:\":300,300italic,regular,italic,500,500italic,700,700italic\";}i:226;a:2:{s:4:\"name\";s:10:\"Fjalla One\";s:7:\"variant\";s:8:\":regular\";}i:227;a:2:{s:4:\"name\";s:9:\"Fjord One\";s:7:\"variant\";s:8:\":regular\";}i:228;a:2:{s:4:\"name\";s:8:\"Flamenco\";s:7:\"variant\";s:12:\":300,regular\";}i:229;a:2:{s:4:\"name\";s:7:\"Flavors\";s:7:\"variant\";s:8:\":regular\";}i:230;a:2:{s:4:\"name\";s:10:\"Fondamento\";s:7:\"variant\";s:15:\":regular,italic\";}i:231;a:2:{s:4:\"name\";s:16:\"Fontdiner Swanky\";s:7:\"variant\";s:8:\":regular\";}i:232;a:2:{s:4:\"name\";s:5:\"Forum\";s:7:\"variant\";s:8:\":regular\";}i:233;a:2:{s:4:\"name\";s:12:\"Francois One\";s:7:\"variant\";s:8:\":regular\";}i:234;a:2:{s:4:\"name\";s:12:\"Freckle Face\";s:7:\"variant\";s:8:\":regular\";}i:235;a:2:{s:4:\"name\";s:20:\"Fredericka the Great\";s:7:\"variant\";s:8:\":regular\";}i:236;a:2:{s:4:\"name\";s:11:\"Fredoka One\";s:7:\"variant\";s:8:\":regular\";}i:237;a:2:{s:4:\"name\";s:8:\"Freehand\";s:7:\"variant\";s:8:\":regular\";}i:238;a:2:{s:4:\"name\";s:6:\"Fresca\";s:7:\"variant\";s:8:\":regular\";}i:239;a:2:{s:4:\"name\";s:7:\"Frijole\";s:7:\"variant\";s:8:\":regular\";}i:240;a:2:{s:4:\"name\";s:7:\"Fruktur\";s:7:\"variant\";s:8:\":regular\";}i:241;a:2:{s:4:\"name\";s:9:\"Fugaz One\";s:7:\"variant\";s:8:\":regular\";}i:242;a:2:{s:4:\"name\";s:9:\"GFS Didot\";s:7:\"variant\";s:8:\":regular\";}i:243;a:2:{s:4:\"name\";s:15:\"GFS Neohellenic\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:244;a:2:{s:4:\"name\";s:8:\"Gabriela\";s:7:\"variant\";s:8:\":regular\";}i:245;a:2:{s:4:\"name\";s:6:\"Gafata\";s:7:\"variant\";s:8:\":regular\";}i:246;a:2:{s:4:\"name\";s:8:\"Galdeano\";s:7:\"variant\";s:8:\":regular\";}i:247;a:2:{s:4:\"name\";s:7:\"Galindo\";s:7:\"variant\";s:8:\":regular\";}i:248;a:2:{s:4:\"name\";s:13:\"Gentium Basic\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:249;a:2:{s:4:\"name\";s:18:\"Gentium Book Basic\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:250;a:2:{s:4:\"name\";s:3:\"Geo\";s:7:\"variant\";s:15:\":regular,italic\";}i:251;a:2:{s:4:\"name\";s:7:\"Geostar\";s:7:\"variant\";s:8:\":regular\";}i:252;a:2:{s:4:\"name\";s:12:\"Geostar Fill\";s:7:\"variant\";s:8:\":regular\";}i:253;a:2:{s:4:\"name\";s:12:\"Germania One\";s:7:\"variant\";s:8:\":regular\";}i:254;a:2:{s:4:\"name\";s:6:\"Gidugu\";s:7:\"variant\";s:8:\":regular\";}i:255;a:2:{s:4:\"name\";s:13:\"Gilda Display\";s:7:\"variant\";s:8:\":regular\";}i:256;a:2:{s:4:\"name\";s:14:\"Give You Glory\";s:7:\"variant\";s:8:\":regular\";}i:257;a:2:{s:4:\"name\";s:13:\"Glass Antiqua\";s:7:\"variant\";s:8:\":regular\";}i:258;a:2:{s:4:\"name\";s:6:\"Glegoo\";s:7:\"variant\";s:12:\":regular,700\";}i:259;a:2:{s:4:\"name\";s:17:\"Gloria Hallelujah\";s:7:\"variant\";s:8:\":regular\";}i:260;a:2:{s:4:\"name\";s:10:\"Goblin One\";s:7:\"variant\";s:8:\":regular\";}i:261;a:2:{s:4:\"name\";s:10:\"Gochi Hand\";s:7:\"variant\";s:8:\":regular\";}i:262;a:2:{s:4:\"name\";s:8:\"Gorditas\";s:7:\"variant\";s:12:\":regular,700\";}i:263;a:2:{s:4:\"name\";s:21:\"Goudy Bookletter 1911\";s:7:\"variant\";s:8:\":regular\";}i:264;a:2:{s:4:\"name\";s:8:\"Graduate\";s:7:\"variant\";s:8:\":regular\";}i:265;a:2:{s:4:\"name\";s:11:\"Grand Hotel\";s:7:\"variant\";s:8:\":regular\";}i:266;a:2:{s:4:\"name\";s:12:\"Gravitas One\";s:7:\"variant\";s:8:\":regular\";}i:267;a:2:{s:4:\"name\";s:11:\"Great Vibes\";s:7:\"variant\";s:8:\":regular\";}i:268;a:2:{s:4:\"name\";s:6:\"Griffy\";s:7:\"variant\";s:8:\":regular\";}i:269;a:2:{s:4:\"name\";s:6:\"Gruppo\";s:7:\"variant\";s:8:\":regular\";}i:270;a:2:{s:4:\"name\";s:5:\"Gudea\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:271;a:2:{s:4:\"name\";s:8:\"Gurajada\";s:7:\"variant\";s:8:\":regular\";}i:272;a:2:{s:4:\"name\";s:6:\"Habibi\";s:7:\"variant\";s:8:\":regular\";}i:273;a:2:{s:4:\"name\";s:6:\"Halant\";s:7:\"variant\";s:24:\":300,regular,500,600,700\";}i:274;a:2:{s:4:\"name\";s:15:\"Hammersmith One\";s:7:\"variant\";s:8:\":regular\";}i:275;a:2:{s:4:\"name\";s:7:\"Hanalei\";s:7:\"variant\";s:8:\":regular\";}i:276;a:2:{s:4:\"name\";s:12:\"Hanalei Fill\";s:7:\"variant\";s:8:\":regular\";}i:277;a:2:{s:4:\"name\";s:7:\"Handlee\";s:7:\"variant\";s:8:\":regular\";}i:278;a:2:{s:4:\"name\";s:7:\"Hanuman\";s:7:\"variant\";s:12:\":regular,700\";}i:279;a:2:{s:4:\"name\";s:12:\"Happy Monkey\";s:7:\"variant\";s:8:\":regular\";}i:280;a:2:{s:4:\"name\";s:12:\"Headland One\";s:7:\"variant\";s:8:\":regular\";}i:281;a:2:{s:4:\"name\";s:11:\"Henny Penny\";s:7:\"variant\";s:8:\":regular\";}i:282;a:2:{s:4:\"name\";s:20:\"Herr Von Muellerhoff\";s:7:\"variant\";s:8:\":regular\";}i:283;a:2:{s:4:\"name\";s:4:\"Hind\";s:7:\"variant\";s:24:\":300,regular,500,600,700\";}i:284;a:2:{s:4:\"name\";s:15:\"Holtwood One SC\";s:7:\"variant\";s:8:\":regular\";}i:285;a:2:{s:4:\"name\";s:14:\"Homemade Apple\";s:7:\"variant\";s:8:\":regular\";}i:286;a:2:{s:4:\"name\";s:8:\"Homenaje\";s:7:\"variant\";s:8:\":regular\";}i:287;a:2:{s:4:\"name\";s:15:\"IM Fell DW Pica\";s:7:\"variant\";s:15:\":regular,italic\";}i:288;a:2:{s:4:\"name\";s:18:\"IM Fell DW Pica SC\";s:7:\"variant\";s:8:\":regular\";}i:289;a:2:{s:4:\"name\";s:19:\"IM Fell Double Pica\";s:7:\"variant\";s:15:\":regular,italic\";}i:290;a:2:{s:4:\"name\";s:22:\"IM Fell Double Pica SC\";s:7:\"variant\";s:8:\":regular\";}i:291;a:2:{s:4:\"name\";s:15:\"IM Fell English\";s:7:\"variant\";s:15:\":regular,italic\";}i:292;a:2:{s:4:\"name\";s:18:\"IM Fell English SC\";s:7:\"variant\";s:8:\":regular\";}i:293;a:2:{s:4:\"name\";s:20:\"IM Fell French Canon\";s:7:\"variant\";s:15:\":regular,italic\";}i:294;a:2:{s:4:\"name\";s:23:\"IM Fell French Canon SC\";s:7:\"variant\";s:8:\":regular\";}i:295;a:2:{s:4:\"name\";s:20:\"IM Fell Great Primer\";s:7:\"variant\";s:15:\":regular,italic\";}i:296;a:2:{s:4:\"name\";s:23:\"IM Fell Great Primer SC\";s:7:\"variant\";s:8:\":regular\";}i:297;a:2:{s:4:\"name\";s:7:\"Iceberg\";s:7:\"variant\";s:8:\":regular\";}i:298;a:2:{s:4:\"name\";s:7:\"Iceland\";s:7:\"variant\";s:8:\":regular\";}i:299;a:2:{s:4:\"name\";s:7:\"Imprima\";s:7:\"variant\";s:8:\":regular\";}i:300;a:2:{s:4:\"name\";s:11:\"Inconsolata\";s:7:\"variant\";s:12:\":regular,700\";}i:301;a:2:{s:4:\"name\";s:5:\"Inder\";s:7:\"variant\";s:8:\":regular\";}i:302;a:2:{s:4:\"name\";s:12:\"Indie Flower\";s:7:\"variant\";s:8:\":regular\";}i:303;a:2:{s:4:\"name\";s:5:\"Inika\";s:7:\"variant\";s:12:\":regular,700\";}i:304;a:2:{s:4:\"name\";s:12:\"Irish Grover\";s:7:\"variant\";s:8:\":regular\";}i:305;a:2:{s:4:\"name\";s:9:\"Istok Web\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:306;a:2:{s:4:\"name\";s:8:\"Italiana\";s:7:\"variant\";s:8:\":regular\";}i:307;a:2:{s:4:\"name\";s:9:\"Italianno\";s:7:\"variant\";s:8:\":regular\";}i:308;a:2:{s:4:\"name\";s:16:\"Jacques Francois\";s:7:\"variant\";s:8:\":regular\";}i:309;a:2:{s:4:\"name\";s:23:\"Jacques Francois Shadow\";s:7:\"variant\";s:8:\":regular\";}i:310;a:2:{s:4:\"name\";s:5:\"Jaldi\";s:7:\"variant\";s:12:\":regular,700\";}i:311;a:2:{s:4:\"name\";s:14:\"Jim Nightshade\";s:7:\"variant\";s:8:\":regular\";}i:312;a:2:{s:4:\"name\";s:10:\"Jockey One\";s:7:\"variant\";s:8:\":regular\";}i:313;a:2:{s:4:\"name\";s:12:\"Jolly Lodger\";s:7:\"variant\";s:8:\":regular\";}i:314;a:2:{s:4:\"name\";s:12:\"Josefin Sans\";s:7:\"variant\";s:71:\":100,100italic,300,300italic,regular,italic,600,600italic,700,700italic\";}i:315;a:2:{s:4:\"name\";s:12:\"Josefin Slab\";s:7:\"variant\";s:71:\":100,100italic,300,300italic,regular,italic,600,600italic,700,700italic\";}i:316;a:2:{s:4:\"name\";s:8:\"Joti One\";s:7:\"variant\";s:8:\":regular\";}i:317;a:2:{s:4:\"name\";s:6:\"Judson\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:318;a:2:{s:4:\"name\";s:5:\"Julee\";s:7:\"variant\";s:8:\":regular\";}i:319;a:2:{s:4:\"name\";s:15:\"Julius Sans One\";s:7:\"variant\";s:8:\":regular\";}i:320;a:2:{s:4:\"name\";s:5:\"Junge\";s:7:\"variant\";s:8:\":regular\";}i:321;a:2:{s:4:\"name\";s:4:\"Jura\";s:7:\"variant\";s:20:\":300,regular,500,600\";}i:322;a:2:{s:4:\"name\";s:17:\"Just Another Hand\";s:7:\"variant\";s:8:\":regular\";}i:323;a:2:{s:4:\"name\";s:23:\"Just Me Again Down Here\";s:7:\"variant\";s:8:\":regular\";}i:324;a:2:{s:4:\"name\";s:5:\"Kalam\";s:7:\"variant\";s:16:\":300,regular,700\";}i:325;a:2:{s:4:\"name\";s:7:\"Kameron\";s:7:\"variant\";s:12:\":regular,700\";}i:326;a:2:{s:4:\"name\";s:9:\"Kantumruy\";s:7:\"variant\";s:16:\":300,regular,700\";}i:327;a:2:{s:4:\"name\";s:5:\"Karla\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:328;a:2:{s:4:\"name\";s:5:\"Karma\";s:7:\"variant\";s:24:\":300,regular,500,600,700\";}i:329;a:2:{s:4:\"name\";s:14:\"Kaushan Script\";s:7:\"variant\";s:8:\":regular\";}i:330;a:2:{s:4:\"name\";s:6:\"Kavoon\";s:7:\"variant\";s:8:\":regular\";}i:331;a:2:{s:4:\"name\";s:10:\"Kdam Thmor\";s:7:\"variant\";s:8:\":regular\";}i:332;a:2:{s:4:\"name\";s:10:\"Keania One\";s:7:\"variant\";s:8:\":regular\";}i:333;a:2:{s:4:\"name\";s:10:\"Kelly Slab\";s:7:\"variant\";s:8:\":regular\";}i:334;a:2:{s:4:\"name\";s:5:\"Kenia\";s:7:\"variant\";s:8:\":regular\";}i:335;a:2:{s:4:\"name\";s:5:\"Khand\";s:7:\"variant\";s:24:\":300,regular,500,600,700\";}i:336;a:2:{s:4:\"name\";s:5:\"Khmer\";s:7:\"variant\";s:8:\":regular\";}i:337;a:2:{s:4:\"name\";s:5:\"Khula\";s:7:\"variant\";s:24:\":300,regular,600,700,800\";}i:338;a:2:{s:4:\"name\";s:8:\"Kite One\";s:7:\"variant\";s:8:\":regular\";}i:339;a:2:{s:4:\"name\";s:7:\"Knewave\";s:7:\"variant\";s:8:\":regular\";}i:340;a:2:{s:4:\"name\";s:9:\"Kotta One\";s:7:\"variant\";s:8:\":regular\";}i:341;a:2:{s:4:\"name\";s:6:\"Koulen\";s:7:\"variant\";s:8:\":regular\";}i:342;a:2:{s:4:\"name\";s:6:\"Kranky\";s:7:\"variant\";s:8:\":regular\";}i:343;a:2:{s:4:\"name\";s:5:\"Kreon\";s:7:\"variant\";s:16:\":300,regular,700\";}i:344;a:2:{s:4:\"name\";s:6:\"Kristi\";s:7:\"variant\";s:8:\":regular\";}i:345;a:2:{s:4:\"name\";s:9:\"Krona One\";s:7:\"variant\";s:8:\":regular\";}i:346;a:2:{s:4:\"name\";s:6:\"Kurale\";s:7:\"variant\";s:8:\":regular\";}i:347;a:2:{s:4:\"name\";s:15:\"La Belle Aurore\";s:7:\"variant\";s:8:\":regular\";}i:348;a:2:{s:4:\"name\";s:5:\"Laila\";s:7:\"variant\";s:24:\":300,regular,500,600,700\";}i:349;a:2:{s:4:\"name\";s:11:\"Lakki Reddy\";s:7:\"variant\";s:8:\":regular\";}i:350;a:2:{s:4:\"name\";s:8:\"Lancelot\";s:7:\"variant\";s:8:\":regular\";}i:351;a:2:{s:4:\"name\";s:6:\"Lateef\";s:7:\"variant\";s:8:\":regular\";}i:352;a:2:{s:4:\"name\";s:4:\"Lato\";s:7:\"variant\";s:71:\":100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}i:353;a:2:{s:4:\"name\";s:13:\"League Script\";s:7:\"variant\";s:8:\":regular\";}i:354;a:2:{s:4:\"name\";s:12:\"Leckerli One\";s:7:\"variant\";s:8:\":regular\";}i:355;a:2:{s:4:\"name\";s:6:\"Ledger\";s:7:\"variant\";s:8:\":regular\";}i:356;a:2:{s:4:\"name\";s:6:\"Lekton\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:357;a:2:{s:4:\"name\";s:5:\"Lemon\";s:7:\"variant\";s:8:\":regular\";}i:358;a:2:{s:4:\"name\";s:17:\"Libre Baskerville\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:359;a:2:{s:4:\"name\";s:11:\"Life Savers\";s:7:\"variant\";s:12:\":regular,700\";}i:360;a:2:{s:4:\"name\";s:10:\"Lilita One\";s:7:\"variant\";s:8:\":regular\";}i:361;a:2:{s:4:\"name\";s:15:\"Lily Script One\";s:7:\"variant\";s:8:\":regular\";}i:362;a:2:{s:4:\"name\";s:9:\"Limelight\";s:7:\"variant\";s:8:\":regular\";}i:363;a:2:{s:4:\"name\";s:11:\"Linden Hill\";s:7:\"variant\";s:15:\":regular,italic\";}i:364;a:2:{s:4:\"name\";s:7:\"Lobster\";s:7:\"variant\";s:8:\":regular\";}i:365;a:2:{s:4:\"name\";s:11:\"Lobster Two\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:366;a:2:{s:4:\"name\";s:16:\"Londrina Outline\";s:7:\"variant\";s:8:\":regular\";}i:367;a:2:{s:4:\"name\";s:15:\"Londrina Shadow\";s:7:\"variant\";s:8:\":regular\";}i:368;a:2:{s:4:\"name\";s:15:\"Londrina Sketch\";s:7:\"variant\";s:8:\":regular\";}i:369;a:2:{s:4:\"name\";s:14:\"Londrina Solid\";s:7:\"variant\";s:8:\":regular\";}i:370;a:2:{s:4:\"name\";s:4:\"Lora\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:371;a:2:{s:4:\"name\";s:21:\"Love Ya Like A Sister\";s:7:\"variant\";s:8:\":regular\";}i:372;a:2:{s:4:\"name\";s:17:\"Loved by the King\";s:7:\"variant\";s:8:\":regular\";}i:373;a:2:{s:4:\"name\";s:14:\"Lovers Quarrel\";s:7:\"variant\";s:8:\":regular\";}i:374;a:2:{s:4:\"name\";s:12:\"Luckiest Guy\";s:7:\"variant\";s:8:\":regular\";}i:375;a:2:{s:4:\"name\";s:8:\"Lusitana\";s:7:\"variant\";s:12:\":regular,700\";}i:376;a:2:{s:4:\"name\";s:7:\"Lustria\";s:7:\"variant\";s:8:\":regular\";}i:377;a:2:{s:4:\"name\";s:7:\"Macondo\";s:7:\"variant\";s:8:\":regular\";}i:378;a:2:{s:4:\"name\";s:18:\"Macondo Swash Caps\";s:7:\"variant\";s:8:\":regular\";}i:379;a:2:{s:4:\"name\";s:5:\"Magra\";s:7:\"variant\";s:12:\":regular,700\";}i:380;a:2:{s:4:\"name\";s:13:\"Maiden Orange\";s:7:\"variant\";s:8:\":regular\";}i:381;a:2:{s:4:\"name\";s:4:\"Mako\";s:7:\"variant\";s:8:\":regular\";}i:382;a:2:{s:4:\"name\";s:8:\"Mallanna\";s:7:\"variant\";s:8:\":regular\";}i:383;a:2:{s:4:\"name\";s:7:\"Mandali\";s:7:\"variant\";s:8:\":regular\";}i:384;a:2:{s:4:\"name\";s:9:\"Marcellus\";s:7:\"variant\";s:8:\":regular\";}i:385;a:2:{s:4:\"name\";s:12:\"Marcellus SC\";s:7:\"variant\";s:8:\":regular\";}i:386;a:2:{s:4:\"name\";s:12:\"Marck Script\";s:7:\"variant\";s:8:\":regular\";}i:387;a:2:{s:4:\"name\";s:9:\"Margarine\";s:7:\"variant\";s:8:\":regular\";}i:388;a:2:{s:4:\"name\";s:9:\"Marko One\";s:7:\"variant\";s:8:\":regular\";}i:389;a:2:{s:4:\"name\";s:8:\"Marmelad\";s:7:\"variant\";s:8:\":regular\";}i:390;a:2:{s:4:\"name\";s:6:\"Martel\";s:7:\"variant\";s:32:\":200,300,regular,600,700,800,900\";}i:391;a:2:{s:4:\"name\";s:11:\"Martel Sans\";s:7:\"variant\";s:32:\":200,300,regular,600,700,800,900\";}i:392;a:2:{s:4:\"name\";s:6:\"Marvel\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:393;a:2:{s:4:\"name\";s:4:\"Mate\";s:7:\"variant\";s:15:\":regular,italic\";}i:394;a:2:{s:4:\"name\";s:7:\"Mate SC\";s:7:\"variant\";s:8:\":regular\";}i:395;a:2:{s:4:\"name\";s:9:\"Maven Pro\";s:7:\"variant\";s:20:\":regular,500,700,900\";}i:396;a:2:{s:4:\"name\";s:7:\"McLaren\";s:7:\"variant\";s:8:\":regular\";}i:397;a:2:{s:4:\"name\";s:6:\"Meddon\";s:7:\"variant\";s:8:\":regular\";}i:398;a:2:{s:4:\"name\";s:13:\"MedievalSharp\";s:7:\"variant\";s:8:\":regular\";}i:399;a:2:{s:4:\"name\";s:10:\"Medula One\";s:7:\"variant\";s:8:\":regular\";}i:400;a:2:{s:4:\"name\";s:6:\"Megrim\";s:7:\"variant\";s:8:\":regular\";}i:401;a:2:{s:4:\"name\";s:11:\"Meie Script\";s:7:\"variant\";s:8:\":regular\";}i:402;a:2:{s:4:\"name\";s:8:\"Merienda\";s:7:\"variant\";s:12:\":regular,700\";}i:403;a:2:{s:4:\"name\";s:12:\"Merienda One\";s:7:\"variant\";s:8:\":regular\";}i:404;a:2:{s:4:\"name\";s:12:\"Merriweather\";s:7:\"variant\";s:57:\":300,300italic,regular,italic,700,700italic,900,900italic\";}i:405;a:2:{s:4:\"name\";s:17:\"Merriweather Sans\";s:7:\"variant\";s:57:\":300,300italic,regular,italic,700,700italic,800,800italic\";}i:406;a:2:{s:4:\"name\";s:5:\"Metal\";s:7:\"variant\";s:8:\":regular\";}i:407;a:2:{s:4:\"name\";s:11:\"Metal Mania\";s:7:\"variant\";s:8:\":regular\";}i:408;a:2:{s:4:\"name\";s:12:\"Metamorphous\";s:7:\"variant\";s:8:\":regular\";}i:409;a:2:{s:4:\"name\";s:11:\"Metrophobic\";s:7:\"variant\";s:8:\":regular\";}i:410;a:2:{s:4:\"name\";s:8:\"Michroma\";s:7:\"variant\";s:8:\":regular\";}i:411;a:2:{s:4:\"name\";s:7:\"Milonga\";s:7:\"variant\";s:8:\":regular\";}i:412;a:2:{s:4:\"name\";s:9:\"Miltonian\";s:7:\"variant\";s:8:\":regular\";}i:413;a:2:{s:4:\"name\";s:16:\"Miltonian Tattoo\";s:7:\"variant\";s:8:\":regular\";}i:414;a:2:{s:4:\"name\";s:7:\"Miniver\";s:7:\"variant\";s:8:\":regular\";}i:415;a:2:{s:4:\"name\";s:14:\"Miss Fajardose\";s:7:\"variant\";s:8:\":regular\";}i:416;a:2:{s:4:\"name\";s:5:\"Modak\";s:7:\"variant\";s:8:\":regular\";}i:417;a:2:{s:4:\"name\";s:14:\"Modern Antiqua\";s:7:\"variant\";s:8:\":regular\";}i:418;a:2:{s:4:\"name\";s:7:\"Molengo\";s:7:\"variant\";s:8:\":regular\";}i:419;a:2:{s:4:\"name\";s:5:\"Molle\";s:7:\"variant\";s:7:\":italic\";}i:420;a:2:{s:4:\"name\";s:5:\"Monda\";s:7:\"variant\";s:12:\":regular,700\";}i:421;a:2:{s:4:\"name\";s:8:\"Monofett\";s:7:\"variant\";s:8:\":regular\";}i:422;a:2:{s:4:\"name\";s:7:\"Monoton\";s:7:\"variant\";s:8:\":regular\";}i:423;a:2:{s:4:\"name\";s:20:\"Monsieur La Doulaise\";s:7:\"variant\";s:8:\":regular\";}i:424;a:2:{s:4:\"name\";s:7:\"Montaga\";s:7:\"variant\";s:8:\":regular\";}i:425;a:2:{s:4:\"name\";s:6:\"Montez\";s:7:\"variant\";s:8:\":regular\";}i:426;a:2:{s:4:\"name\";s:10:\"Montserrat\";s:7:\"variant\";s:12:\":regular,700\";}i:427;a:2:{s:4:\"name\";s:21:\"Montserrat Alternates\";s:7:\"variant\";s:12:\":regular,700\";}i:428;a:2:{s:4:\"name\";s:20:\"Montserrat Subrayada\";s:7:\"variant\";s:12:\":regular,700\";}i:429;a:2:{s:4:\"name\";s:4:\"Moul\";s:7:\"variant\";s:8:\":regular\";}i:430;a:2:{s:4:\"name\";s:8:\"Moulpali\";s:7:\"variant\";s:8:\":regular\";}i:431;a:2:{s:4:\"name\";s:22:\"Mountains of Christmas\";s:7:\"variant\";s:12:\":regular,700\";}i:432;a:2:{s:4:\"name\";s:13:\"Mouse Memoirs\";s:7:\"variant\";s:8:\":regular\";}i:433;a:2:{s:4:\"name\";s:10:\"Mr Bedfort\";s:7:\"variant\";s:8:\":regular\";}i:434;a:2:{s:4:\"name\";s:8:\"Mr Dafoe\";s:7:\"variant\";s:8:\":regular\";}i:435;a:2:{s:4:\"name\";s:14:\"Mr De Haviland\";s:7:\"variant\";s:8:\":regular\";}i:436;a:2:{s:4:\"name\";s:19:\"Mrs Saint Delafield\";s:7:\"variant\";s:8:\":regular\";}i:437;a:2:{s:4:\"name\";s:13:\"Mrs Sheppards\";s:7:\"variant\";s:8:\":regular\";}i:438;a:2:{s:4:\"name\";s:4:\"Muli\";s:7:\"variant\";s:29:\":300,300italic,regular,italic\";}i:439;a:2:{s:4:\"name\";s:13:\"Mystery Quest\";s:7:\"variant\";s:8:\":regular\";}i:440;a:2:{s:4:\"name\";s:3:\"NTR\";s:7:\"variant\";s:8:\":regular\";}i:441;a:2:{s:4:\"name\";s:6:\"Neucha\";s:7:\"variant\";s:8:\":regular\";}i:442;a:2:{s:4:\"name\";s:6:\"Neuton\";s:7:\"variant\";s:31:\":200,300,regular,italic,700,800\";}i:443;a:2:{s:4:\"name\";s:10:\"New Rocker\";s:7:\"variant\";s:8:\":regular\";}i:444;a:2:{s:4:\"name\";s:10:\"News Cycle\";s:7:\"variant\";s:12:\":regular,700\";}i:445;a:2:{s:4:\"name\";s:7:\"Niconne\";s:7:\"variant\";s:8:\":regular\";}i:446;a:2:{s:4:\"name\";s:9:\"Nixie One\";s:7:\"variant\";s:8:\":regular\";}i:447;a:2:{s:4:\"name\";s:6:\"Nobile\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:448;a:2:{s:4:\"name\";s:6:\"Nokora\";s:7:\"variant\";s:12:\":regular,700\";}i:449;a:2:{s:4:\"name\";s:7:\"Norican\";s:7:\"variant\";s:8:\":regular\";}i:450;a:2:{s:4:\"name\";s:7:\"Nosifer\";s:7:\"variant\";s:8:\":regular\";}i:451;a:2:{s:4:\"name\";s:20:\"Nothing You Could Do\";s:7:\"variant\";s:8:\":regular\";}i:452;a:2:{s:4:\"name\";s:12:\"Noticia Text\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:453;a:2:{s:4:\"name\";s:9:\"Noto Sans\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:454;a:2:{s:4:\"name\";s:10:\"Noto Serif\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:455;a:2:{s:4:\"name\";s:8:\"Nova Cut\";s:7:\"variant\";s:8:\":regular\";}i:456;a:2:{s:4:\"name\";s:9:\"Nova Flat\";s:7:\"variant\";s:8:\":regular\";}i:457;a:2:{s:4:\"name\";s:9:\"Nova Mono\";s:7:\"variant\";s:8:\":regular\";}i:458;a:2:{s:4:\"name\";s:9:\"Nova Oval\";s:7:\"variant\";s:8:\":regular\";}i:459;a:2:{s:4:\"name\";s:10:\"Nova Round\";s:7:\"variant\";s:8:\":regular\";}i:460;a:2:{s:4:\"name\";s:11:\"Nova Script\";s:7:\"variant\";s:8:\":regular\";}i:461;a:2:{s:4:\"name\";s:9:\"Nova Slim\";s:7:\"variant\";s:8:\":regular\";}i:462;a:2:{s:4:\"name\";s:11:\"Nova Square\";s:7:\"variant\";s:8:\":regular\";}i:463;a:2:{s:4:\"name\";s:6:\"Numans\";s:7:\"variant\";s:8:\":regular\";}i:464;a:2:{s:4:\"name\";s:6:\"Nunito\";s:7:\"variant\";s:16:\":300,regular,700\";}i:465;a:2:{s:4:\"name\";s:14:\"Odor Mean Chey\";s:7:\"variant\";s:8:\":regular\";}i:466;a:2:{s:4:\"name\";s:7:\"Offside\";s:7:\"variant\";s:8:\":regular\";}i:467;a:2:{s:4:\"name\";s:15:\"Old Standard TT\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:468;a:2:{s:4:\"name\";s:9:\"Oldenburg\";s:7:\"variant\";s:8:\":regular\";}i:469;a:2:{s:4:\"name\";s:11:\"Oleo Script\";s:7:\"variant\";s:12:\":regular,700\";}i:470;a:2:{s:4:\"name\";s:22:\"Oleo Script Swash Caps\";s:7:\"variant\";s:12:\":regular,700\";}i:471;a:2:{s:4:\"name\";s:9:\"Open Sans\";s:7:\"variant\";s:71:\":300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}i:472;a:2:{s:4:\"name\";s:19:\"Open Sans Condensed\";s:7:\"variant\";s:18:\":300,300italic,700\";}i:473;a:2:{s:4:\"name\";s:11:\"Oranienbaum\";s:7:\"variant\";s:8:\":regular\";}i:474;a:2:{s:4:\"name\";s:8:\"Orbitron\";s:7:\"variant\";s:20:\":regular,500,700,900\";}i:475;a:2:{s:4:\"name\";s:7:\"Oregano\";s:7:\"variant\";s:15:\":regular,italic\";}i:476;a:2:{s:4:\"name\";s:7:\"Orienta\";s:7:\"variant\";s:8:\":regular\";}i:477;a:2:{s:4:\"name\";s:15:\"Original Surfer\";s:7:\"variant\";s:8:\":regular\";}i:478;a:2:{s:4:\"name\";s:6:\"Oswald\";s:7:\"variant\";s:16:\":300,regular,700\";}i:479;a:2:{s:4:\"name\";s:16:\"Over the Rainbow\";s:7:\"variant\";s:8:\":regular\";}i:480;a:2:{s:4:\"name\";s:8:\"Overlock\";s:7:\"variant\";s:43:\":regular,italic,700,700italic,900,900italic\";}i:481;a:2:{s:4:\"name\";s:11:\"Overlock SC\";s:7:\"variant\";s:8:\":regular\";}i:482;a:2:{s:4:\"name\";s:3:\"Ovo\";s:7:\"variant\";s:8:\":regular\";}i:483;a:2:{s:4:\"name\";s:6:\"Oxygen\";s:7:\"variant\";s:16:\":300,regular,700\";}i:484;a:2:{s:4:\"name\";s:11:\"Oxygen Mono\";s:7:\"variant\";s:8:\":regular\";}i:485;a:2:{s:4:\"name\";s:7:\"PT Mono\";s:7:\"variant\";s:8:\":regular\";}i:486;a:2:{s:4:\"name\";s:7:\"PT Sans\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:487;a:2:{s:4:\"name\";s:15:\"PT Sans Caption\";s:7:\"variant\";s:12:\":regular,700\";}i:488;a:2:{s:4:\"name\";s:14:\"PT Sans Narrow\";s:7:\"variant\";s:12:\":regular,700\";}i:489;a:2:{s:4:\"name\";s:8:\"PT Serif\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:490;a:2:{s:4:\"name\";s:16:\"PT Serif Caption\";s:7:\"variant\";s:15:\":regular,italic\";}i:491;a:2:{s:4:\"name\";s:8:\"Pacifico\";s:7:\"variant\";s:8:\":regular\";}i:492;a:2:{s:4:\"name\";s:9:\"Palanquin\";s:7:\"variant\";s:32:\":100,200,300,regular,500,600,700\";}i:493;a:2:{s:4:\"name\";s:14:\"Palanquin Dark\";s:7:\"variant\";s:20:\":regular,500,600,700\";}i:494;a:2:{s:4:\"name\";s:7:\"Paprika\";s:7:\"variant\";s:8:\":regular\";}i:495;a:2:{s:4:\"name\";s:10:\"Parisienne\";s:7:\"variant\";s:8:\":regular\";}i:496;a:2:{s:4:\"name\";s:11:\"Passero One\";s:7:\"variant\";s:8:\":regular\";}i:497;a:2:{s:4:\"name\";s:11:\"Passion One\";s:7:\"variant\";s:16:\":regular,700,900\";}i:498;a:2:{s:4:\"name\";s:18:\"Pathway Gothic One\";s:7:\"variant\";s:8:\":regular\";}i:499;a:2:{s:4:\"name\";s:12:\"Patrick Hand\";s:7:\"variant\";s:8:\":regular\";}i:500;a:2:{s:4:\"name\";s:15:\"Patrick Hand SC\";s:7:\"variant\";s:8:\":regular\";}i:501;a:2:{s:4:\"name\";s:9:\"Patua One\";s:7:\"variant\";s:8:\":regular\";}i:502;a:2:{s:4:\"name\";s:11:\"Paytone One\";s:7:\"variant\";s:8:\":regular\";}i:503;a:2:{s:4:\"name\";s:7:\"Peddana\";s:7:\"variant\";s:8:\":regular\";}i:504;a:2:{s:4:\"name\";s:7:\"Peralta\";s:7:\"variant\";s:8:\":regular\";}i:505;a:2:{s:4:\"name\";s:16:\"Permanent Marker\";s:7:\"variant\";s:8:\":regular\";}i:506;a:2:{s:4:\"name\";s:19:\"Petit Formal Script\";s:7:\"variant\";s:8:\":regular\";}i:507;a:2:{s:4:\"name\";s:7:\"Petrona\";s:7:\"variant\";s:8:\":regular\";}i:508;a:2:{s:4:\"name\";s:11:\"Philosopher\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:509;a:2:{s:4:\"name\";s:6:\"Piedra\";s:7:\"variant\";s:8:\":regular\";}i:510;a:2:{s:4:\"name\";s:13:\"Pinyon Script\";s:7:\"variant\";s:8:\":regular\";}i:511;a:2:{s:4:\"name\";s:10:\"Pirata One\";s:7:\"variant\";s:8:\":regular\";}i:512;a:2:{s:4:\"name\";s:7:\"Plaster\";s:7:\"variant\";s:8:\":regular\";}i:513;a:2:{s:4:\"name\";s:4:\"Play\";s:7:\"variant\";s:12:\":regular,700\";}i:514;a:2:{s:4:\"name\";s:8:\"Playball\";s:7:\"variant\";s:8:\":regular\";}i:515;a:2:{s:4:\"name\";s:16:\"Playfair Display\";s:7:\"variant\";s:43:\":regular,italic,700,700italic,900,900italic\";}i:516;a:2:{s:4:\"name\";s:19:\"Playfair Display SC\";s:7:\"variant\";s:43:\":regular,italic,700,700italic,900,900italic\";}i:517;a:2:{s:4:\"name\";s:7:\"Podkova\";s:7:\"variant\";s:12:\":regular,700\";}i:518;a:2:{s:4:\"name\";s:10:\"Poiret One\";s:7:\"variant\";s:8:\":regular\";}i:519;a:2:{s:4:\"name\";s:10:\"Poller One\";s:7:\"variant\";s:8:\":regular\";}i:520;a:2:{s:4:\"name\";s:4:\"Poly\";s:7:\"variant\";s:15:\":regular,italic\";}i:521;a:2:{s:4:\"name\";s:8:\"Pompiere\";s:7:\"variant\";s:8:\":regular\";}i:522;a:2:{s:4:\"name\";s:12:\"Pontano Sans\";s:7:\"variant\";s:8:\":regular\";}i:523;a:2:{s:4:\"name\";s:16:\"Port Lligat Sans\";s:7:\"variant\";s:8:\":regular\";}i:524;a:2:{s:4:\"name\";s:16:\"Port Lligat Slab\";s:7:\"variant\";s:8:\":regular\";}i:525;a:2:{s:4:\"name\";s:14:\"Pragati Narrow\";s:7:\"variant\";s:12:\":regular,700\";}i:526;a:2:{s:4:\"name\";s:5:\"Prata\";s:7:\"variant\";s:8:\":regular\";}i:527;a:2:{s:4:\"name\";s:11:\"Preahvihear\";s:7:\"variant\";s:8:\":regular\";}i:528;a:2:{s:4:\"name\";s:14:\"Press Start 2P\";s:7:\"variant\";s:8:\":regular\";}i:529;a:2:{s:4:\"name\";s:14:\"Princess Sofia\";s:7:\"variant\";s:8:\":regular\";}i:530;a:2:{s:4:\"name\";s:8:\"Prociono\";s:7:\"variant\";s:8:\":regular\";}i:531;a:2:{s:4:\"name\";s:10:\"Prosto One\";s:7:\"variant\";s:8:\":regular\";}i:532;a:2:{s:4:\"name\";s:7:\"Puritan\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:533;a:2:{s:4:\"name\";s:12:\"Purple Purse\";s:7:\"variant\";s:8:\":regular\";}i:534;a:2:{s:4:\"name\";s:6:\"Quando\";s:7:\"variant\";s:8:\":regular\";}i:535;a:2:{s:4:\"name\";s:8:\"Quantico\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:536;a:2:{s:4:\"name\";s:12:\"Quattrocento\";s:7:\"variant\";s:12:\":regular,700\";}i:537;a:2:{s:4:\"name\";s:17:\"Quattrocento Sans\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:538;a:2:{s:4:\"name\";s:9:\"Questrial\";s:7:\"variant\";s:8:\":regular\";}i:539;a:2:{s:4:\"name\";s:9:\"Quicksand\";s:7:\"variant\";s:16:\":300,regular,700\";}i:540;a:2:{s:4:\"name\";s:14:\"Quintessential\";s:7:\"variant\";s:8:\":regular\";}i:541;a:2:{s:4:\"name\";s:7:\"Qwigley\";s:7:\"variant\";s:8:\":regular\";}i:542;a:2:{s:4:\"name\";s:15:\"Racing Sans One\";s:7:\"variant\";s:8:\":regular\";}i:543;a:2:{s:4:\"name\";s:6:\"Radley\";s:7:\"variant\";s:15:\":regular,italic\";}i:544;a:2:{s:4:\"name\";s:8:\"Rajdhani\";s:7:\"variant\";s:24:\":300,regular,500,600,700\";}i:545;a:2:{s:4:\"name\";s:7:\"Raleway\";s:7:\"variant\";s:40:\":100,200,300,regular,500,600,700,800,900\";}i:546;a:2:{s:4:\"name\";s:12:\"Raleway Dots\";s:7:\"variant\";s:8:\":regular\";}i:547;a:2:{s:4:\"name\";s:10:\"Ramabhadra\";s:7:\"variant\";s:8:\":regular\";}i:548;a:2:{s:4:\"name\";s:8:\"Ramaraja\";s:7:\"variant\";s:8:\":regular\";}i:549;a:2:{s:4:\"name\";s:6:\"Rambla\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:550;a:2:{s:4:\"name\";s:12:\"Rammetto One\";s:7:\"variant\";s:8:\":regular\";}i:551;a:2:{s:4:\"name\";s:8:\"Ranchers\";s:7:\"variant\";s:8:\":regular\";}i:552;a:2:{s:4:\"name\";s:6:\"Rancho\";s:7:\"variant\";s:8:\":regular\";}i:553;a:2:{s:4:\"name\";s:5:\"Ranga\";s:7:\"variant\";s:12:\":regular,700\";}i:554;a:2:{s:4:\"name\";s:9:\"Rationale\";s:7:\"variant\";s:8:\":regular\";}i:555;a:2:{s:4:\"name\";s:12:\"Ravi Prakash\";s:7:\"variant\";s:8:\":regular\";}i:556;a:2:{s:4:\"name\";s:9:\"Redressed\";s:7:\"variant\";s:8:\":regular\";}i:557;a:2:{s:4:\"name\";s:13:\"Reenie Beanie\";s:7:\"variant\";s:8:\":regular\";}i:558;a:2:{s:4:\"name\";s:7:\"Revalia\";s:7:\"variant\";s:8:\":regular\";}i:559;a:2:{s:4:\"name\";s:6:\"Ribeye\";s:7:\"variant\";s:8:\":regular\";}i:560;a:2:{s:4:\"name\";s:13:\"Ribeye Marrow\";s:7:\"variant\";s:8:\":regular\";}i:561;a:2:{s:4:\"name\";s:9:\"Righteous\";s:7:\"variant\";s:8:\":regular\";}i:562;a:2:{s:4:\"name\";s:6:\"Risque\";s:7:\"variant\";s:8:\":regular\";}i:563;a:2:{s:4:\"name\";s:6:\"Roboto\";s:7:\"variant\";s:85:\":100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";}i:564;a:2:{s:4:\"name\";s:16:\"Roboto Condensed\";s:7:\"variant\";s:43:\":300,300italic,regular,italic,700,700italic\";}i:565;a:2:{s:4:\"name\";s:11:\"Roboto Mono\";s:7:\"variant\";s:71:\":100,100italic,300,300italic,regular,italic,500,500italic,700,700italic\";}i:566;a:2:{s:4:\"name\";s:11:\"Roboto Slab\";s:7:\"variant\";s:20:\":100,300,regular,700\";}i:567;a:2:{s:4:\"name\";s:9:\"Rochester\";s:7:\"variant\";s:8:\":regular\";}i:568;a:2:{s:4:\"name\";s:9:\"Rock Salt\";s:7:\"variant\";s:8:\":regular\";}i:569;a:2:{s:4:\"name\";s:7:\"Rokkitt\";s:7:\"variant\";s:12:\":regular,700\";}i:570;a:2:{s:4:\"name\";s:9:\"Romanesco\";s:7:\"variant\";s:8:\":regular\";}i:571;a:2:{s:4:\"name\";s:9:\"Ropa Sans\";s:7:\"variant\";s:15:\":regular,italic\";}i:572;a:2:{s:4:\"name\";s:7:\"Rosario\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:573;a:2:{s:4:\"name\";s:8:\"Rosarivo\";s:7:\"variant\";s:15:\":regular,italic\";}i:574;a:2:{s:4:\"name\";s:12:\"Rouge Script\";s:7:\"variant\";s:8:\":regular\";}i:575;a:2:{s:4:\"name\";s:9:\"Rozha One\";s:7:\"variant\";s:8:\":regular\";}i:576;a:2:{s:4:\"name\";s:14:\"Rubik Mono One\";s:7:\"variant\";s:8:\":regular\";}i:577;a:2:{s:4:\"name\";s:9:\"Rubik One\";s:7:\"variant\";s:8:\":regular\";}i:578;a:2:{s:4:\"name\";s:4:\"Ruda\";s:7:\"variant\";s:16:\":regular,700,900\";}i:579;a:2:{s:4:\"name\";s:6:\"Rufina\";s:7:\"variant\";s:12:\":regular,700\";}i:580;a:2:{s:4:\"name\";s:11:\"Ruge Boogie\";s:7:\"variant\";s:8:\":regular\";}i:581;a:2:{s:4:\"name\";s:6:\"Ruluko\";s:7:\"variant\";s:8:\":regular\";}i:582;a:2:{s:4:\"name\";s:10:\"Rum Raisin\";s:7:\"variant\";s:8:\":regular\";}i:583;a:2:{s:4:\"name\";s:14:\"Ruslan Display\";s:7:\"variant\";s:8:\":regular\";}i:584;a:2:{s:4:\"name\";s:9:\"Russo One\";s:7:\"variant\";s:8:\":regular\";}i:585;a:2:{s:4:\"name\";s:6:\"Ruthie\";s:7:\"variant\";s:8:\":regular\";}i:586;a:2:{s:4:\"name\";s:3:\"Rye\";s:7:\"variant\";s:8:\":regular\";}i:587;a:2:{s:4:\"name\";s:10:\"Sacramento\";s:7:\"variant\";s:8:\":regular\";}i:588;a:2:{s:4:\"name\";s:4:\"Sail\";s:7:\"variant\";s:8:\":regular\";}i:589;a:2:{s:4:\"name\";s:5:\"Salsa\";s:7:\"variant\";s:8:\":regular\";}i:590;a:2:{s:4:\"name\";s:7:\"Sanchez\";s:7:\"variant\";s:15:\":regular,italic\";}i:591;a:2:{s:4:\"name\";s:8:\"Sancreek\";s:7:\"variant\";s:8:\":regular\";}i:592;a:2:{s:4:\"name\";s:11:\"Sansita One\";s:7:\"variant\";s:8:\":regular\";}i:593;a:2:{s:4:\"name\";s:6:\"Sarina\";s:7:\"variant\";s:8:\":regular\";}i:594;a:2:{s:4:\"name\";s:8:\"Sarpanch\";s:7:\"variant\";s:28:\":regular,500,600,700,800,900\";}i:595;a:2:{s:4:\"name\";s:7:\"Satisfy\";s:7:\"variant\";s:8:\":regular\";}i:596;a:2:{s:4:\"name\";s:5:\"Scada\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:597;a:2:{s:4:\"name\";s:12:\"Scheherazade\";s:7:\"variant\";s:8:\":regular\";}i:598;a:2:{s:4:\"name\";s:10:\"Schoolbell\";s:7:\"variant\";s:8:\":regular\";}i:599;a:2:{s:4:\"name\";s:14:\"Seaweed Script\";s:7:\"variant\";s:8:\":regular\";}i:600;a:2:{s:4:\"name\";s:9:\"Sevillana\";s:7:\"variant\";s:8:\":regular\";}i:601;a:2:{s:4:\"name\";s:11:\"Seymour One\";s:7:\"variant\";s:8:\":regular\";}i:602;a:2:{s:4:\"name\";s:18:\"Shadows Into Light\";s:7:\"variant\";s:8:\":regular\";}i:603;a:2:{s:4:\"name\";s:22:\"Shadows Into Light Two\";s:7:\"variant\";s:8:\":regular\";}i:604;a:2:{s:4:\"name\";s:6:\"Shanti\";s:7:\"variant\";s:8:\":regular\";}i:605;a:2:{s:4:\"name\";s:5:\"Share\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:606;a:2:{s:4:\"name\";s:10:\"Share Tech\";s:7:\"variant\";s:8:\":regular\";}i:607;a:2:{s:4:\"name\";s:15:\"Share Tech Mono\";s:7:\"variant\";s:8:\":regular\";}i:608;a:2:{s:4:\"name\";s:9:\"Shojumaru\";s:7:\"variant\";s:8:\":regular\";}i:609;a:2:{s:4:\"name\";s:11:\"Short Stack\";s:7:\"variant\";s:8:\":regular\";}i:610;a:2:{s:4:\"name\";s:8:\"Siemreap\";s:7:\"variant\";s:8:\":regular\";}i:611;a:2:{s:4:\"name\";s:10:\"Sigmar One\";s:7:\"variant\";s:8:\":regular\";}i:612;a:2:{s:4:\"name\";s:7:\"Signika\";s:7:\"variant\";s:20:\":300,regular,600,700\";}i:613;a:2:{s:4:\"name\";s:16:\"Signika Negative\";s:7:\"variant\";s:20:\":300,regular,600,700\";}i:614;a:2:{s:4:\"name\";s:9:\"Simonetta\";s:7:\"variant\";s:29:\":regular,italic,900,900italic\";}i:615;a:2:{s:4:\"name\";s:7:\"Sintony\";s:7:\"variant\";s:12:\":regular,700\";}i:616;a:2:{s:4:\"name\";s:13:\"Sirin Stencil\";s:7:\"variant\";s:8:\":regular\";}i:617;a:2:{s:4:\"name\";s:8:\"Six Caps\";s:7:\"variant\";s:8:\":regular\";}i:618;a:2:{s:4:\"name\";s:7:\"Skranji\";s:7:\"variant\";s:12:\":regular,700\";}i:619;a:2:{s:4:\"name\";s:10:\"Slabo 13px\";s:7:\"variant\";s:8:\":regular\";}i:620;a:2:{s:4:\"name\";s:10:\"Slabo 27px\";s:7:\"variant\";s:8:\":regular\";}i:621;a:2:{s:4:\"name\";s:7:\"Slackey\";s:7:\"variant\";s:8:\":regular\";}i:622;a:2:{s:4:\"name\";s:6:\"Smokum\";s:7:\"variant\";s:8:\":regular\";}i:623;a:2:{s:4:\"name\";s:6:\"Smythe\";s:7:\"variant\";s:8:\":regular\";}i:624;a:2:{s:4:\"name\";s:7:\"Sniglet\";s:7:\"variant\";s:12:\":regular,800\";}i:625;a:2:{s:4:\"name\";s:7:\"Snippet\";s:7:\"variant\";s:8:\":regular\";}i:626;a:2:{s:4:\"name\";s:13:\"Snowburst One\";s:7:\"variant\";s:8:\":regular\";}i:627;a:2:{s:4:\"name\";s:10:\"Sofadi One\";s:7:\"variant\";s:8:\":regular\";}i:628;a:2:{s:4:\"name\";s:5:\"Sofia\";s:7:\"variant\";s:8:\":regular\";}i:629;a:2:{s:4:\"name\";s:10:\"Sonsie One\";s:7:\"variant\";s:8:\":regular\";}i:630;a:2:{s:4:\"name\";s:16:\"Sorts Mill Goudy\";s:7:\"variant\";s:15:\":regular,italic\";}i:631;a:2:{s:4:\"name\";s:15:\"Source Code Pro\";s:7:\"variant\";s:32:\":200,300,regular,500,600,700,900\";}i:632;a:2:{s:4:\"name\";s:15:\"Source Sans Pro\";s:7:\"variant\";s:85:\":200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,900,900italic\";}i:633;a:2:{s:4:\"name\";s:16:\"Source Serif Pro\";s:7:\"variant\";s:16:\":regular,600,700\";}i:634;a:2:{s:4:\"name\";s:13:\"Special Elite\";s:7:\"variant\";s:8:\":regular\";}i:635;a:2:{s:4:\"name\";s:10:\"Spicy Rice\";s:7:\"variant\";s:8:\":regular\";}i:636;a:2:{s:4:\"name\";s:9:\"Spinnaker\";s:7:\"variant\";s:8:\":regular\";}i:637;a:2:{s:4:\"name\";s:6:\"Spirax\";s:7:\"variant\";s:8:\":regular\";}i:638;a:2:{s:4:\"name\";s:10:\"Squada One\";s:7:\"variant\";s:8:\":regular\";}i:639;a:2:{s:4:\"name\";s:20:\"Sree Krushnadevaraya\";s:7:\"variant\";s:8:\":regular\";}i:640;a:2:{s:4:\"name\";s:9:\"Stalemate\";s:7:\"variant\";s:8:\":regular\";}i:641;a:2:{s:4:\"name\";s:13:\"Stalinist One\";s:7:\"variant\";s:8:\":regular\";}i:642;a:2:{s:4:\"name\";s:15:\"Stardos Stencil\";s:7:\"variant\";s:12:\":regular,700\";}i:643;a:2:{s:4:\"name\";s:21:\"Stint Ultra Condensed\";s:7:\"variant\";s:8:\":regular\";}i:644;a:2:{s:4:\"name\";s:20:\"Stint Ultra Expanded\";s:7:\"variant\";s:8:\":regular\";}i:645;a:2:{s:4:\"name\";s:5:\"Stoke\";s:7:\"variant\";s:12:\":300,regular\";}i:646;a:2:{s:4:\"name\";s:6:\"Strait\";s:7:\"variant\";s:8:\":regular\";}i:647;a:2:{s:4:\"name\";s:19:\"Sue Ellen Francisco\";s:7:\"variant\";s:8:\":regular\";}i:648;a:2:{s:4:\"name\";s:6:\"Sumana\";s:7:\"variant\";s:12:\":regular,700\";}i:649;a:2:{s:4:\"name\";s:9:\"Sunshiney\";s:7:\"variant\";s:8:\":regular\";}i:650;a:2:{s:4:\"name\";s:16:\"Supermercado One\";s:7:\"variant\";s:8:\":regular\";}i:651;a:2:{s:4:\"name\";s:7:\"Suranna\";s:7:\"variant\";s:8:\":regular\";}i:652;a:2:{s:4:\"name\";s:9:\"Suravaram\";s:7:\"variant\";s:8:\":regular\";}i:653;a:2:{s:4:\"name\";s:11:\"Suwannaphum\";s:7:\"variant\";s:8:\":regular\";}i:654;a:2:{s:4:\"name\";s:18:\"Swanky and Moo Moo\";s:7:\"variant\";s:8:\":regular\";}i:655;a:2:{s:4:\"name\";s:9:\"Syncopate\";s:7:\"variant\";s:12:\":regular,700\";}i:656;a:2:{s:4:\"name\";s:9:\"Tangerine\";s:7:\"variant\";s:12:\":regular,700\";}i:657;a:2:{s:4:\"name\";s:6:\"Taprom\";s:7:\"variant\";s:8:\":regular\";}i:658;a:2:{s:4:\"name\";s:5:\"Tauri\";s:7:\"variant\";s:8:\":regular\";}i:659;a:2:{s:4:\"name\";s:4:\"Teko\";s:7:\"variant\";s:24:\":300,regular,500,600,700\";}i:660;a:2:{s:4:\"name\";s:5:\"Telex\";s:7:\"variant\";s:8:\":regular\";}i:661;a:2:{s:4:\"name\";s:18:\"Tenali Ramakrishna\";s:7:\"variant\";s:8:\":regular\";}i:662;a:2:{s:4:\"name\";s:10:\"Tenor Sans\";s:7:\"variant\";s:8:\":regular\";}i:663;a:2:{s:4:\"name\";s:11:\"Text Me One\";s:7:\"variant\";s:8:\":regular\";}i:664;a:2:{s:4:\"name\";s:18:\"The Girl Next Door\";s:7:\"variant\";s:8:\":regular\";}i:665;a:2:{s:4:\"name\";s:6:\"Tienne\";s:7:\"variant\";s:16:\":regular,700,900\";}i:666;a:2:{s:4:\"name\";s:7:\"Timmana\";s:7:\"variant\";s:8:\":regular\";}i:667;a:2:{s:4:\"name\";s:5:\"Tinos\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:668;a:2:{s:4:\"name\";s:9:\"Titan One\";s:7:\"variant\";s:8:\":regular\";}i:669;a:2:{s:4:\"name\";s:13:\"Titillium Web\";s:7:\"variant\";s:75:\":200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,900\";}i:670;a:2:{s:4:\"name\";s:11:\"Trade Winds\";s:7:\"variant\";s:8:\":regular\";}i:671;a:2:{s:4:\"name\";s:7:\"Trocchi\";s:7:\"variant\";s:8:\":regular\";}i:672;a:2:{s:4:\"name\";s:7:\"Trochut\";s:7:\"variant\";s:19:\":regular,italic,700\";}i:673;a:2:{s:4:\"name\";s:7:\"Trykker\";s:7:\"variant\";s:8:\":regular\";}i:674;a:2:{s:4:\"name\";s:10:\"Tulpen One\";s:7:\"variant\";s:8:\":regular\";}i:675;a:2:{s:4:\"name\";s:6:\"Ubuntu\";s:7:\"variant\";s:57:\":300,300italic,regular,italic,500,500italic,700,700italic\";}i:676;a:2:{s:4:\"name\";s:16:\"Ubuntu Condensed\";s:7:\"variant\";s:8:\":regular\";}i:677;a:2:{s:4:\"name\";s:11:\"Ubuntu Mono\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:678;a:2:{s:4:\"name\";s:5:\"Ultra\";s:7:\"variant\";s:8:\":regular\";}i:679;a:2:{s:4:\"name\";s:14:\"Uncial Antiqua\";s:7:\"variant\";s:8:\":regular\";}i:680;a:2:{s:4:\"name\";s:8:\"Underdog\";s:7:\"variant\";s:8:\":regular\";}i:681;a:2:{s:4:\"name\";s:9:\"Unica One\";s:7:\"variant\";s:8:\":regular\";}i:682;a:2:{s:4:\"name\";s:14:\"UnifrakturCook\";s:7:\"variant\";s:4:\":700\";}i:683;a:2:{s:4:\"name\";s:18:\"UnifrakturMaguntia\";s:7:\"variant\";s:8:\":regular\";}i:684;a:2:{s:4:\"name\";s:7:\"Unkempt\";s:7:\"variant\";s:12:\":regular,700\";}i:685;a:2:{s:4:\"name\";s:6:\"Unlock\";s:7:\"variant\";s:8:\":regular\";}i:686;a:2:{s:4:\"name\";s:4:\"Unna\";s:7:\"variant\";s:8:\":regular\";}i:687;a:2:{s:4:\"name\";s:5:\"VT323\";s:7:\"variant\";s:8:\":regular\";}i:688;a:2:{s:4:\"name\";s:11:\"Vampiro One\";s:7:\"variant\";s:8:\":regular\";}i:689;a:2:{s:4:\"name\";s:6:\"Varela\";s:7:\"variant\";s:8:\":regular\";}i:690;a:2:{s:4:\"name\";s:12:\"Varela Round\";s:7:\"variant\";s:8:\":regular\";}i:691;a:2:{s:4:\"name\";s:11:\"Vast Shadow\";s:7:\"variant\";s:8:\":regular\";}i:692;a:2:{s:4:\"name\";s:12:\"Vesper Libre\";s:7:\"variant\";s:20:\":regular,500,700,900\";}i:693;a:2:{s:4:\"name\";s:5:\"Vibur\";s:7:\"variant\";s:8:\":regular\";}i:694;a:2:{s:4:\"name\";s:8:\"Vidaloka\";s:7:\"variant\";s:8:\":regular\";}i:695;a:2:{s:4:\"name\";s:4:\"Viga\";s:7:\"variant\";s:8:\":regular\";}i:696;a:2:{s:4:\"name\";s:5:\"Voces\";s:7:\"variant\";s:8:\":regular\";}i:697;a:2:{s:4:\"name\";s:7:\"Volkhov\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:698;a:2:{s:4:\"name\";s:8:\"Vollkorn\";s:7:\"variant\";s:29:\":regular,italic,700,700italic\";}i:699;a:2:{s:4:\"name\";s:8:\"Voltaire\";s:7:\"variant\";s:8:\":regular\";}i:700;a:2:{s:4:\"name\";s:23:\"Waiting for the Sunrise\";s:7:\"variant\";s:8:\":regular\";}i:701;a:2:{s:4:\"name\";s:8:\"Wallpoet\";s:7:\"variant\";s:8:\":regular\";}i:702;a:2:{s:4:\"name\";s:15:\"Walter Turncoat\";s:7:\"variant\";s:8:\":regular\";}i:703;a:2:{s:4:\"name\";s:6:\"Warnes\";s:7:\"variant\";s:8:\":regular\";}i:704;a:2:{s:4:\"name\";s:9:\"Wellfleet\";s:7:\"variant\";s:8:\":regular\";}i:705;a:2:{s:4:\"name\";s:9:\"Wendy One\";s:7:\"variant\";s:8:\":regular\";}i:706;a:2:{s:4:\"name\";s:8:\"Wire One\";s:7:\"variant\";s:8:\":regular\";}i:707;a:2:{s:4:\"name\";s:17:\"Yanone Kaffeesatz\";s:7:\"variant\";s:20:\":200,300,regular,700\";}i:708;a:2:{s:4:\"name\";s:10:\"Yellowtail\";s:7:\"variant\";s:8:\":regular\";}i:709;a:2:{s:4:\"name\";s:10:\"Yeseva One\";s:7:\"variant\";s:8:\":regular\";}i:710;a:2:{s:4:\"name\";s:10:\"Yesteryear\";s:7:\"variant\";s:8:\":regular\";}i:711;a:2:{s:4:\"name\";s:6:\"Zeyada\";s:7:\"variant\";s:8:\":regular\";}}','yes'),(1161,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"info@manomaybiochem.com\";s:7:\"version\";s:6:\"4.9.15\";s:9:\"timestamp\";i:1591849372;}','no'),(516,'a3rev_wc_email_inquiry_plugin','wc_email_inquiry','yes'),(517,'a3rev_wc_email_inquiry_version','2.0.1','yes'),(518,'a3rev_wc_email_inquiry_ultimate_version','1.2.6','yes'),(519,'a3rev_wc_orders_quotes_version','1.1.8','yes'),(521,'wc_email_inquiry_reset_products_options','no','yes'),(527,'wc_email_inquiry_3rd_contact_form_settings','a:5:{s:22:\"contact_form_shortcode\";s:0:\"\";s:27:\"product_page_open_form_type\";s:8:\"new_page\";s:28:\"category_page_open_form_type\";s:8:\"new_page\";s:27:\"custom_contact_form_heading\";s:38:\"You are making an Email Inquiry about:\";s:32:\"custom_contact_form_heading_font\";a:4:{s:4:\"size\";s:4:\"18px\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#000000\";}}','yes'),(528,'wc_email_inquiry_page_id','','yes'),(529,'wc_email_inquiry_reset_products_shortcode_options','no','yes'),(531,'wc_email_inquiry_reset_products_button_style_options','no','yes'),(537,'wc_email_inquiry_quotes_mode_global_settings','a:4:{s:38:\"manual_quotes_display_shipping_options\";s:3:\"yes\";s:37:\"manual_quotes_display_shipping_prices\";s:3:\"yes\";s:36:\"auto_quotes_display_shipping_options\";s:3:\"yes\";s:35:\"auto_quotes_display_shipping_prices\";s:3:\"yes\";}','yes'),(544,'wc_email_inquiry_quote_checkout_shipping_help_text','','yes'),(553,'wc_email_inquiry_orders_mode_global_settings','a:2:{s:30:\"order_display_shipping_options\";s:3:\"yes\";s:36:\"order_quotes_display_shipping_prices\";s:3:\"yes\";}','yes'),(560,'wc_email_inquiry_order_checkout_shipping_help_text','','yes'),(567,'wc_email_inquiry_cart_options_style_version','1531145508','yes'),(34447,'fresh_site','0','yes'),(34448,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(32565,'db_upgraded','','yes'),(85728,'_transient_timeout_wc_related_30','1595007008','no'),(85729,'_transient_wc_related_30','a:1:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=30\";a:0:{}}','no'),(85736,'_transient_timeout_wc_related_106','1595077017','no'),(85737,'_transient_wc_related_106','a:1:{s:51:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=106\";a:0:{}}','no'),(85738,'_transient_timeout_wc_related_19','1595021739','no'),(85739,'_transient_wc_related_19','a:1:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=19\";a:0:{}}','no'),(85746,'_transient_timeout_wc_related_236','1595042014','no'),(85747,'_transient_wc_related_236','a:1:{s:51:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=236\";a:0:{}}','no'),(85758,'_transient_timeout_wc_related_131','1595050677','no'),(85759,'_transient_wc_related_131','a:1:{s:51:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=131\";a:0:{}}','no'),(85749,'_transient_timeout_wc_related_126','1595045822','no'),(85750,'_transient_wc_related_126','a:1:{s:51:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=126\";a:0:{}}','no'),(85754,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1594959425;s:7:\"checked\";a:5:{s:13:\"twentyfifteen\";s:3:\"1.4\";s:14:\"twentyfourteen\";s:3:\"1.6\";s:15:\"twentyseventeen\";s:3:\"1.6\";s:13:\"twentysixteen\";s:3:\"1.2\";s:10:\"zerif-lite\";s:7:\"1.8.2.5\";}s:8:\"response\";a:5:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.2.8.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.3.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.1.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:10:\"zerif-lite\";a:6:{s:5:\"theme\";s:10:\"zerif-lite\";s:11:\"new_version\";s:8:\"1.8.5.49\";s:3:\"url\";s:40:\"https://wordpress.org/themes/zerif-lite/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/zerif-lite.1.8.5.49.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(85755,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1594959426;s:7:\"checked\";a:7:{s:19:\"akismet/akismet.php\";s:5:\"3.1.7\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:5:\"2.6.1\";s:9:\"hello.php\";s:3:\"1.6\";s:35:\"image-watermark/image-watermark.php\";s:5:\"1.6.4\";s:67:\"product-enquiry-for-woocommerce/product-enquiry-for-woocommerce.php\";s:5:\"2.6.1\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.4.3\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.1\";}s:8:\"response\";a:5:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:5:\"3.6.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.3.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-256x256.png?rev=2075006\";s:2:\"1x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-128x128.png?rev=2075006\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=1354894\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=1354894\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:9:\"hello.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"image-watermark/image-watermark.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/image-watermark\";s:4:\"slug\";s:15:\"image-watermark\";s:6:\"plugin\";s:35:\"image-watermark/image-watermark.php\";s:11:\"new_version\";s:5:\"1.6.6\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/image-watermark/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/image-watermark.1.6.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/image-watermark/assets/icon-256x256.png?rev=1018443\";s:2:\"1x\";s:68:\"https://ps.w.org/image-watermark/assets/icon-128x128.png?rev=1018443\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/image-watermark/assets/banner-772x250.png?rev=692625\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:48:\"<ul>\n<li>Tweak: PHP 7.3 compatibility</li>\n</ul>\";s:6:\"tested\";s:5:\"5.3.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:3:\"0.7\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/wordpress-importer/assets/icon-256x256.png?rev=1908375\";s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:67:\"product-enquiry-for-woocommerce/product-enquiry-for-woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:45:\"w.org/plugins/product-enquiry-for-woocommerce\";s:4:\"slug\";s:31:\"product-enquiry-for-woocommerce\";s:6:\"plugin\";s:67:\"product-enquiry-for-woocommerce/product-enquiry-for-woocommerce.php\";s:11:\"new_version\";s:5:\"3.0.1\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/product-enquiry-for-woocommerce/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/product-enquiry-for-woocommerce.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/product-enquiry-for-woocommerce/assets/icon-256x256.png?rev=1037514\";s:2:\"1x\";s:84:\"https://ps.w.org/product-enquiry-for-woocommerce/assets/icon-128x128.png?rev=1037514\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:85:\"https://ps.w.org/product-enquiry-for-woocommerce/assets/banner-772x250.jpg?rev=894259\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"4.3.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";a:0:{}}}}','no'),(61990,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1569892656','no'),(34473,'_transient_shipping-transient-version','1533300806','yes'),(62001,'_transient_is_multi_author','0','yes'),(62068,'_transient_zerif_categories','1','yes'),(83250,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:6:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.4\";s:7:\"version\";s:5:\"5.3.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.7\";s:7:\"version\";s:5:\"5.2.7\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.6\";s:7:\"version\";s:5:\"5.1.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.0.10.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.0.10.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.10-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.0.10-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.0.10\";s:7:\"version\";s:6:\"5.0.10\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1594959423;s:15:\"version_checked\";s:6:\"4.9.15\";s:12:\"translations\";a:0:{}}','no'),(31754,'email_notification_settings','','yes'),(31755,'email_recipient_options','','yes'),(31756,'email_options','','yes'),(31757,'email_template_options','','yes'),(31764,'woocommerce_new_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"admin@manomaybiochem.com\";s:7:\"subject\";s:65:\"[{site_title}] New customer order ({order_number}) - {order_date}\";s:7:\"heading\";s:18:\"New customer order\";s:10:\"email_type\";s:4:\"html\";}','yes'),(31767,'woocommerce_cancelled_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"admin@manomaybiochem.com\";s:7:\"subject\";s:47:\"[{site_title}] Cancelled order ({order_number})\";s:7:\"heading\";s:15:\"Cancelled order\";s:10:\"email_type\";s:4:\"html\";}','yes'),(31770,'woocommerce_failed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"admin@manomaybiochem.com\";s:7:\"subject\";s:44:\"[{site_title}] Failed order ({order_number})\";s:7:\"heading\";s:12:\"Failed order\";s:10:\"email_type\";s:4:\"html\";}','yes'),(32564,'wp_page_for_privacy_policy','0','yes'),(32553,'wdm_form_data','a:8:{s:10:\"user_email\";s:23:\"info@manomaybiochem.com\";s:11:\"default_sub\";s:43:\"Enquiry for a product from Manomay Bio Chem\";s:18:\"send_mail_to_admin\";s:1:\"1\";s:16:\"deactivate_nonce\";s:1:\"1\";s:12:\"custom_label\";s:32:\"Make an enquiry for this product\";s:18:\"show_after_summary\";s:14:\"after_add_cart\";s:15:\"user_custom_css\";s:0:\"\";s:27:\"enquiry_privacy_policy_text\";s:191:\"I allow the Site owner to contact me via email/phone to discuss this enquiry. (If you want to know more about the way this site handles the data, then please go through our [privacy_policy]).\";}','yes'),(32595,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(32559,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32560,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32561,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32562,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32563,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32354,'dc_wc_Woocommerce_Catalog_Enquiry_general_settings_name','a:31:{s:16:\"redirect_page_id\";s:1:\"7\";s:21:\"custom_static_heading\";s:0:\"\";s:10:\"name_label\";s:0:\"\";s:11:\"email_label\";s:0:\"\";s:13:\"subject_label\";s:0:\"\";s:11:\"phone_label\";s:0:\"\";s:13:\"address_label\";s:0:\"\";s:13:\"comment_label\";s:0:\"\";s:16:\"fileupload_label\";s:0:\"\";s:13:\"captcha_label\";s:0:\"\";s:19:\"captcha_input_label\";s:0:\"\";s:10:\"is_captcha\";s:6:\"Enable\";s:13:\"for_user_type\";s:1:\"3\";s:12:\"other_emails\";s:20:\"psawant311@gmail.com\";s:16:\"top_content_form\";s:0:\"\";s:19:\"bottom_content_form\";s:0:\"\";s:17:\"is_enable_enquiry\";s:6:\"Enable\";s:15:\"is_remove_price\";s:6:\"Enable\";s:11:\"button_type\";s:1:\"1\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:12:\"Send Enquiry\";s:17:\"button_text_color\";s:6:\"fbfbfb\";s:23:\"button_background_color\";s:6:\"fbfbfb\";s:23:\"button_text_color_hover\";s:6:\"fbfbfb\";s:29:\"button_background_color_hover\";s:6:\"fbfbfb\";s:19:\"button_border_color\";s:6:\"fbfbfb\";s:10:\"is_subject\";s:6:\"Enable\";s:8:\"is_phone\";s:6:\"Enable\";s:10:\"is_comment\";s:6:\"Enable\";s:14:\"filesize_limit\";s:0:\"\";s:16:\"other_admin_mail\";s:0:\"\";}','yes'),(32378,'wc_email_inquiry_rules_roles_settings','a:6:{s:23:\"rules_roles_explanation\";s:4:\"hide\";s:27:\"troubleshooting_explanation\";s:4:\"hide\";s:21:\"quotes_orders_upgrade\";s:4:\"hide\";s:14:\"hide_addcartbt\";s:3:\"yes\";s:26:\"hide_addcartbt_after_login\";s:3:\"yes\";s:20:\"role_apply_hide_cart\";s:0:\"\";}','yes'),(32379,'wc_email_inquiry_clean_on_deletion','0','yes'),(32380,'wc_email_inquiry_global_settings','a:21:{s:11:\"show_button\";s:3:\"yes\";s:23:\"show_button_after_login\";s:3:\"yes\";s:30:\"role_apply_show_inquiry_button\";s:0:\"\";s:19:\"inquiry_single_only\";s:2:\"no\";s:22:\"inquiry_form_bg_colour\";s:7:\"#FFFFFF\";s:23:\"inquiry_contact_heading\";s:0:\"\";s:28:\"inquiry_contact_heading_font\";a:5:{s:4:\"size\";s:4:\"18px\";s:11:\"line_height\";s:5:\"1.4em\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#000000\";}s:30:\"inquiry_form_product_name_font\";a:5:{s:4:\"size\";s:4:\"26px\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#29577F\";s:11:\"line_height\";s:5:\"1.4em\";}s:29:\"inquiry_form_product_url_font\";a:5:{s:4:\"size\";s:4:\"12px\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#29577F\";s:11:\"line_height\";s:5:\"1.4em\";}s:26:\"inquiry_contact_popup_text\";a:5:{s:4:\"size\";s:4:\"12px\";s:11:\"line_height\";s:5:\"1.4em\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#000000\";}s:25:\"inquiry_form_subject_font\";a:5:{s:4:\"size\";s:4:\"12px\";s:11:\"line_height\";s:5:\"1.4em\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#000000\";}s:23:\"inquiry_input_bg_colour\";s:7:\"#FAFAFA\";s:25:\"inquiry_input_font_colour\";s:7:\"#000000\";s:20:\"inquiry_input_border\";a:7:{s:5:\"width\";s:3:\"1px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:7:\"#CCCCCC\";s:15:\"top_left_corner\";s:1:\"3\";s:16:\"top_right_corner\";s:1:\"3\";s:19:\"bottom_right_corner\";s:1:\"3\";s:18:\"bottom_left_corner\";s:1:\"3\";}s:27:\"inquiry_contact_text_button\";s:4:\"SEND\";s:27:\"inquiry_contact_button_font\";a:5:{s:4:\"size\";s:4:\"12px\";s:11:\"line_height\";s:5:\"1.4em\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#FFFFFF\";}s:32:\"inquiry_contact_button_bg_colour\";s:7:\"#EE2B2B\";s:37:\"inquiry_contact_button_bg_colour_from\";s:7:\"#FBCACA\";s:35:\"inquiry_contact_button_bg_colour_to\";s:7:\"#EE2B2B\";s:29:\"inquiry_contact_button_border\";a:8:{s:5:\"width\";s:3:\"1px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:7:\"#EE2B2B\";s:6:\"corner\";s:7:\"rounded\";s:15:\"top_left_corner\";s:1:\"3\";s:16:\"top_right_corner\";s:1:\"3\";s:19:\"bottom_right_corner\";s:1:\"3\";s:18:\"bottom_left_corner\";s:1:\"3\";}s:29:\"inquiry_contact_button_shadow\";a:5:{s:8:\"h_shadow\";s:3:\"5px\";s:8:\"v_shadow\";s:3:\"5px\";s:4:\"blur\";s:3:\"2px\";s:6:\"spread\";s:3:\"2px\";s:5:\"color\";s:7:\"#999999\";}}','yes'),(32381,'wc_email_inquiry_contact_form_settings','a:10:{s:23:\"inquiry_email_from_name\";s:16:\"Manomay Bio Chem\";s:26:\"inquiry_email_from_address\";s:23:\"info@manomaybiochem.com\";s:16:\"inquiry_email_to\";s:24:\"sales@manomaybiochem.com\";s:16:\"inquiry_email_cc\";s:20:\"psawant311@gmail.com\";s:13:\"name_required\";s:3:\"yes\";s:10:\"show_phone\";s:3:\"yes\";s:14:\"phone_required\";s:2:\"no\";s:16:\"message_required\";s:3:\"yes\";s:17:\"inquiry_send_copy\";s:2:\"no\";s:10:\"acceptance\";s:3:\"yes\";}','yes'),(32382,'wc_email_inquiry_contact_form_information_text','The information you enter here will be sent directly to the recipient. It is not stored on this sites database. Read more in our <a href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Privacy Policy</a>','yes'),(32383,'wc_email_inquiry_contact_form_condition_text','I have read and agree to the website terms and conditions','yes'),(32384,'wc_email_inquiry_contact_success','Thanks for your inquiry - we\\\'ll be in touch with you as soon as possible!','yes'),(32385,'wc_email_inquiry_customize_email_button','a:20:{s:19:\"inquiry_button_type\";s:6:\"button\";s:23:\"inquiry_button_position\";s:5:\"below\";s:25:\"inquiry_button_margin_top\";i:5;s:28:\"inquiry_button_margin_bottom\";i:5;s:26:\"inquiry_button_margin_left\";i:0;s:27:\"inquiry_button_margin_right\";i:0;s:20:\"inquiry_button_title\";s:15:\"Product Enquiry\";s:19:\"inquiry_button_font\";a:5:{s:4:\"size\";s:4:\"12px\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#FFFFFF\";s:11:\"line_height\";s:5:\"1.4em\";}s:25:\"inquiry_button_padding_tb\";i:5;s:25:\"inquiry_button_padding_lr\";i:5;s:24:\"inquiry_button_bg_colour\";s:7:\"#EE2B2B\";s:29:\"inquiry_button_bg_colour_from\";s:7:\"#FBCACA\";s:27:\"inquiry_button_bg_colour_to\";s:7:\"#EE2B2B\";s:21:\"inquiry_button_border\";a:5:{s:5:\"width\";s:3:\"1px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:7:\"#EE2B2B\";s:6:\"corner\";s:7:\"rounded\";s:13:\"rounded_value\";i:3;}s:21:\"inquiry_button_shadow\";a:7:{s:6:\"enable\";i:0;s:8:\"h_shadow\";s:3:\"5px\";s:8:\"v_shadow\";s:3:\"5px\";s:4:\"blur\";s:3:\"2px\";s:6:\"spread\";s:3:\"2px\";s:5:\"color\";s:7:\"#999999\";s:5:\"inset\";s:0:\"\";}s:19:\"inquiry_text_before\";s:0:\"\";s:22:\"inquiry_hyperlink_text\";s:10:\"Click Here\";s:21:\"inquiry_trailing_text\";s:0:\"\";s:22:\"inquiry_hyperlink_font\";a:5:{s:4:\"size\";s:4:\"12px\";s:4:\"face\";s:17:\"Arial, sans-serif\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#000000\";s:11:\"line_height\";s:5:\"1.4em\";}s:29:\"inquiry_hyperlink_hover_color\";s:7:\"#999999\";}','yes'),(32387,'wc_email_inquiry_google_api_key','','yes'),(32388,'wc_email_inquiry_toggle_box_open','0','yes'),(32585,'woocommerce_store_address','','yes'),(32586,'woocommerce_store_address_2','','yes'),(32587,'woocommerce_store_city','','yes'),(32588,'woocommerce_store_postcode','','yes'),(32589,'woocommerce_all_except_countries','','yes'),(32590,'woocommerce_enable_reviews','yes','yes'),(32591,'woocommerce_shipping_debug_mode','no','yes'),(32592,'woocommerce_erasure_request_removes_order_data','no','no'),(32593,'woocommerce_erasure_request_removes_download_data','no','no'),(32594,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3522 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(7,10,'_edit_lock','1474599259:1'),(8,10,'_visibility','visible'),(6,10,'_edit_last','1'),(9,10,'_stock_status','instock'),(10,10,'total_sales','0'),(11,10,'_downloadable','no'),(12,10,'_virtual','no'),(13,10,'_purchase_note',''),(14,10,'_featured','no'),(15,10,'_weight',''),(16,10,'_length',''),(17,10,'_width',''),(18,10,'_height',''),(19,10,'_sku','Yeast Extract Powder'),(20,10,'_product_attributes','a:0:{}'),(21,10,'_regular_price',''),(22,10,'_sale_price',''),(23,10,'_sale_price_dates_from',''),(24,10,'_sale_price_dates_to',''),(25,10,'_price',''),(26,10,'_sold_individually',''),(27,10,'_manage_stock','no'),(28,10,'_backorders','no'),(29,10,'_stock',''),(30,10,'_upsell_ids','a:0:{}'),(31,10,'_crosssell_ids','a:0:{}'),(32,10,'_product_version','2.5.5'),(33,10,'_product_image_gallery','89'),(34,11,'_menu_item_type','custom'),(35,11,'_menu_item_menu_item_parent','0'),(36,11,'_menu_item_object_id','11'),(37,11,'_menu_item_object','custom'),(38,11,'_menu_item_target',''),(39,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(40,11,'_menu_item_xfn',''),(41,11,'_menu_item_url','http://manomaybiochem.com/'),(115,18,'_stock',''),(112,18,'_sold_individually',''),(111,18,'_price',''),(110,18,'_sale_price_dates_to',''),(109,18,'_sale_price_dates_from',''),(108,18,'_sale_price',''),(107,18,'_regular_price',''),(106,18,'_product_attributes','a:0:{}'),(105,18,'_sku','Peptone Powder'),(104,18,'_height',''),(103,18,'_width',''),(102,18,'_length',''),(101,18,'_weight',''),(100,18,'_featured','no'),(99,18,'_purchase_note',''),(97,18,'_downloadable','no'),(98,18,'_virtual','no'),(653,43,'_menu_item_target',''),(652,43,'_menu_item_object','custom'),(651,43,'_menu_item_object_id','43'),(650,43,'_menu_item_menu_item_parent','0'),(649,43,'_menu_item_type','custom'),(114,18,'_backorders','no'),(96,18,'total_sales','0'),(95,18,'_stock_status','instock'),(94,18,'_visibility','visible'),(93,18,'_edit_lock','1485734838:1'),(92,18,'_edit_last','1'),(90,10,'_wc_review_count','0'),(91,10,'_wp_old_slug','first-product'),(79,16,'_menu_item_type','post_type'),(80,16,'_menu_item_menu_item_parent','0'),(81,16,'_menu_item_object_id','6'),(82,16,'_menu_item_object','page'),(83,16,'_menu_item_target',''),(84,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(85,16,'_menu_item_xfn',''),(86,16,'_menu_item_url',''),(113,18,'_manage_stock','no'),(88,10,'_wc_rating_count','a:0:{}'),(89,10,'_wc_average_rating','0'),(116,18,'_upsell_ids','a:0:{}'),(117,18,'_crosssell_ids','a:0:{}'),(118,18,'_product_version','2.5.5'),(119,18,'_product_image_gallery','76'),(120,18,'_wc_rating_count','a:0:{}'),(121,18,'_wc_average_rating','0'),(122,18,'_wc_review_count','0'),(123,19,'_edit_last','1'),(124,19,'_edit_lock','1474597820:1'),(125,19,'_visibility','visible'),(126,19,'_stock_status','instock'),(127,19,'total_sales','0'),(128,19,'_downloadable','no'),(129,19,'_virtual','no'),(130,19,'_purchase_note',''),(131,19,'_featured','no'),(132,19,'_weight',''),(133,19,'_length',''),(134,19,'_width',''),(135,19,'_height',''),(136,19,'_sku',''),(137,19,'_product_attributes','a:0:{}'),(138,19,'_regular_price',''),(139,19,'_sale_price',''),(140,19,'_sale_price_dates_from',''),(141,19,'_sale_price_dates_to',''),(142,19,'_price',''),(143,19,'_sold_individually',''),(144,19,'_manage_stock','no'),(145,19,'_backorders','no'),(146,19,'_stock',''),(147,19,'_upsell_ids','a:0:{}'),(148,19,'_crosssell_ids','a:0:{}'),(149,19,'_product_version','2.5.5'),(150,19,'_product_image_gallery','58'),(151,19,'_wc_rating_count','a:0:{}'),(152,19,'_wc_review_count','0'),(153,19,'_wc_average_rating','0'),(154,20,'_edit_last','1'),(155,20,'_edit_lock','1485686654:1'),(156,20,'_visibility','visible'),(157,20,'_stock_status','instock'),(158,20,'total_sales','0'),(159,20,'_downloadable','no'),(160,20,'_virtual','no'),(161,20,'_purchase_note',''),(162,20,'_featured','no'),(163,20,'_weight',''),(164,20,'_length',''),(165,20,'_width',''),(166,20,'_height',''),(167,20,'_sku',''),(168,20,'_product_attributes','a:0:{}'),(169,20,'_regular_price',''),(170,20,'_sale_price',''),(171,20,'_sale_price_dates_from',''),(172,20,'_sale_price_dates_to',''),(173,20,'_price',''),(174,20,'_sold_individually',''),(175,20,'_manage_stock','no'),(176,20,'_backorders','no'),(177,20,'_stock',''),(178,20,'_upsell_ids','a:0:{}'),(179,20,'_crosssell_ids','a:0:{}'),(180,20,'_product_version','2.5.5'),(181,20,'_product_image_gallery','72,70'),(182,21,'_edit_last','1'),(183,21,'_edit_lock','1485684060:1'),(184,21,'_visibility','visible'),(185,21,'_stock_status','instock'),(186,21,'total_sales','0'),(187,21,'_downloadable','no'),(188,21,'_virtual','no'),(189,21,'_purchase_note',''),(190,21,'_featured','no'),(191,21,'_weight',''),(192,21,'_length',''),(193,21,'_width',''),(194,21,'_height',''),(195,21,'_sku','Folic Acid'),(196,21,'_product_attributes','a:0:{}'),(197,21,'_regular_price',''),(198,21,'_sale_price',''),(199,21,'_sale_price_dates_from',''),(200,21,'_sale_price_dates_to',''),(201,21,'_price',''),(202,21,'_sold_individually',''),(203,21,'_manage_stock','no'),(204,21,'_backorders','no'),(205,21,'_stock',''),(206,21,'_upsell_ids','a:0:{}'),(207,21,'_crosssell_ids','a:0:{}'),(208,21,'_product_version','2.5.5'),(209,21,'_product_image_gallery','62,61'),(210,22,'_edit_last','1'),(211,22,'_edit_lock','1474599636:1'),(212,22,'_visibility','visible'),(213,22,'_stock_status','instock'),(214,22,'total_sales','0'),(215,22,'_downloadable','no'),(216,22,'_virtual','no'),(217,22,'_purchase_note',''),(218,22,'_featured','no'),(219,22,'_weight',''),(220,22,'_length',''),(221,22,'_width',''),(222,22,'_height',''),(223,22,'_sku',''),(224,22,'_product_attributes','a:0:{}'),(225,22,'_regular_price',''),(226,22,'_sale_price',''),(227,22,'_sale_price_dates_from',''),(228,22,'_sale_price_dates_to',''),(229,22,'_price',''),(230,22,'_sold_individually',''),(231,22,'_manage_stock','no'),(232,22,'_backorders','no'),(233,22,'_stock',''),(234,22,'_upsell_ids','a:0:{}'),(235,22,'_crosssell_ids','a:0:{}'),(236,22,'_product_version','2.5.5'),(237,22,'_product_image_gallery','66,65'),(238,23,'_edit_last','1'),(239,23,'_edit_lock','1474426751:1'),(240,23,'_visibility','visible'),(241,23,'_stock_status','instock'),(242,23,'total_sales','0'),(243,23,'_downloadable','no'),(244,23,'_virtual','no'),(245,23,'_purchase_note',''),(246,23,'_featured','no'),(247,23,'_weight',''),(248,23,'_length',''),(249,23,'_width',''),(250,23,'_height',''),(251,23,'_sku',''),(252,23,'_product_attributes','a:0:{}'),(253,23,'_regular_price',''),(254,23,'_sale_price',''),(255,23,'_sale_price_dates_from',''),(256,23,'_sale_price_dates_to',''),(257,23,'_price',''),(258,23,'_sold_individually',''),(259,23,'_manage_stock','no'),(260,23,'_backorders','no'),(261,23,'_stock',''),(262,23,'_upsell_ids','a:0:{}'),(263,23,'_crosssell_ids','a:0:{}'),(264,23,'_product_version','2.5.5'),(265,23,'_product_image_gallery','50'),(266,24,'_edit_last','1'),(267,24,'_edit_lock','1485735922:1'),(268,24,'_visibility','visible'),(269,24,'_stock_status','instock'),(270,24,'total_sales','0'),(271,24,'_downloadable','no'),(272,24,'_virtual','no'),(273,24,'_purchase_note',''),(274,24,'_featured','no'),(275,24,'_weight',''),(276,24,'_length',''),(277,24,'_width',''),(278,24,'_height',''),(279,24,'_sku',''),(280,24,'_product_attributes','a:0:{}'),(281,24,'_regular_price',''),(282,24,'_sale_price',''),(283,24,'_sale_price_dates_from',''),(284,24,'_sale_price_dates_to',''),(285,24,'_price',''),(286,24,'_sold_individually',''),(287,24,'_manage_stock','no'),(288,24,'_backorders','no'),(289,24,'_stock',''),(290,24,'_upsell_ids','a:0:{}'),(291,24,'_crosssell_ids','a:0:{}'),(292,24,'_product_version','2.5.5'),(293,24,'_product_image_gallery','82,83'),(294,25,'_edit_last','1'),(295,25,'_edit_lock','1474599413:1'),(296,25,'_visibility','visible'),(297,25,'_stock_status','instock'),(298,25,'total_sales','0'),(299,25,'_downloadable','no'),(300,25,'_virtual','no'),(301,25,'_purchase_note',''),(302,25,'_featured','no'),(303,25,'_weight',''),(304,25,'_length',''),(305,25,'_width',''),(306,25,'_height',''),(307,25,'_sku',''),(308,25,'_product_attributes','a:0:{}'),(309,25,'_regular_price',''),(310,25,'_sale_price',''),(311,25,'_sale_price_dates_from',''),(312,25,'_sale_price_dates_to',''),(313,25,'_price',''),(314,25,'_sold_individually',''),(315,25,'_manage_stock','no'),(316,25,'_backorders','no'),(317,25,'_stock',''),(318,25,'_upsell_ids','a:0:{}'),(319,25,'_crosssell_ids','a:0:{}'),(320,25,'_product_version','2.5.5'),(321,25,'_product_image_gallery','56,55'),(322,26,'_edit_last','1'),(323,26,'_edit_lock','1474599337:1'),(324,26,'_visibility','visible'),(325,26,'_stock_status','instock'),(326,26,'total_sales','0'),(327,26,'_downloadable','no'),(328,26,'_virtual','no'),(329,26,'_purchase_note',''),(330,26,'_featured','no'),(331,26,'_weight',''),(332,26,'_length',''),(333,26,'_width',''),(334,26,'_height',''),(335,26,'_sku',''),(336,26,'_product_attributes','a:0:{}'),(337,26,'_regular_price',''),(338,26,'_sale_price',''),(339,26,'_sale_price_dates_from',''),(340,26,'_sale_price_dates_to',''),(341,26,'_price',''),(342,26,'_sold_individually',''),(343,26,'_manage_stock','no'),(344,26,'_backorders','no'),(345,26,'_stock',''),(346,26,'_upsell_ids','a:0:{}'),(347,26,'_crosssell_ids','a:0:{}'),(348,26,'_product_version','2.5.5'),(349,26,'_product_image_gallery','104'),(350,27,'_edit_last','1'),(351,27,'_edit_lock','1474599366:1'),(352,27,'_visibility','visible'),(353,27,'_stock_status','instock'),(354,27,'total_sales','0'),(355,27,'_downloadable','no'),(356,27,'_virtual','no'),(357,27,'_purchase_note',''),(358,27,'_featured','no'),(359,27,'_weight',''),(360,27,'_length',''),(361,27,'_width',''),(362,27,'_height',''),(363,27,'_sku',''),(364,27,'_product_attributes','a:0:{}'),(365,27,'_regular_price',''),(366,27,'_sale_price',''),(367,27,'_sale_price_dates_from',''),(368,27,'_sale_price_dates_to',''),(369,27,'_price',''),(370,27,'_sold_individually',''),(371,27,'_manage_stock','no'),(372,27,'_backorders','no'),(373,27,'_stock',''),(374,27,'_upsell_ids','a:0:{}'),(375,27,'_crosssell_ids','a:0:{}'),(376,27,'_product_version','2.5.5'),(377,27,'_product_image_gallery','53'),(378,28,'_edit_last','1'),(379,28,'_edit_lock','1485734922:1'),(380,28,'_visibility','visible'),(381,28,'_stock_status','instock'),(382,28,'total_sales','0'),(383,28,'_downloadable','no'),(384,28,'_virtual','no'),(385,28,'_purchase_note',''),(386,28,'_featured','no'),(387,28,'_weight',''),(388,28,'_length',''),(389,28,'_width',''),(390,28,'_height',''),(391,28,'_sku',''),(392,28,'_product_attributes','a:0:{}'),(393,28,'_regular_price',''),(394,28,'_sale_price',''),(395,28,'_sale_price_dates_from',''),(396,28,'_sale_price_dates_to',''),(397,28,'_price',''),(398,28,'_sold_individually',''),(399,28,'_manage_stock','no'),(400,28,'_backorders','no'),(401,28,'_stock',''),(402,28,'_upsell_ids','a:0:{}'),(403,28,'_crosssell_ids','a:0:{}'),(404,28,'_product_version','2.5.5'),(405,28,'_product_image_gallery','80,78'),(406,29,'_edit_last','1'),(407,29,'_edit_lock','1485683769:1'),(408,29,'_visibility','visible'),(409,29,'_stock_status','instock'),(410,29,'total_sales','0'),(411,29,'_downloadable','no'),(412,29,'_virtual','no'),(413,29,'_purchase_note',''),(414,29,'_featured','no'),(415,29,'_weight',''),(416,29,'_length',''),(417,29,'_width',''),(418,29,'_height',''),(419,29,'_sku','Dextrose'),(420,29,'_product_attributes','a:0:{}'),(421,29,'_regular_price',''),(422,29,'_sale_price',''),(423,29,'_sale_price_dates_from',''),(424,29,'_sale_price_dates_to',''),(425,29,'_price',''),(426,29,'_sold_individually',''),(427,29,'_manage_stock','no'),(428,29,'_backorders','no'),(429,29,'_stock',''),(430,29,'_upsell_ids','a:0:{}'),(431,29,'_crosssell_ids','a:0:{}'),(432,29,'_product_version','2.5.5'),(433,29,'_product_image_gallery','59'),(434,30,'_edit_last','1'),(435,30,'_edit_lock','1485684540:1'),(436,30,'_visibility','visible'),(437,30,'_stock_status','instock'),(438,30,'total_sales','0'),(439,30,'_downloadable','no'),(440,30,'_virtual','no'),(441,30,'_purchase_note',''),(442,30,'_featured','no'),(443,30,'_weight',''),(444,30,'_length',''),(445,30,'_width',''),(446,30,'_height',''),(447,30,'_sku','Glycerol'),(448,30,'_product_attributes','a:0:{}'),(449,30,'_regular_price',''),(450,30,'_sale_price',''),(451,30,'_sale_price_dates_from',''),(452,30,'_sale_price_dates_to',''),(453,30,'_price',''),(454,30,'_sold_individually',''),(455,30,'_manage_stock','no'),(456,30,'_backorders','no'),(457,30,'_stock',''),(458,30,'_upsell_ids','a:0:{}'),(459,30,'_crosssell_ids','a:0:{}'),(460,30,'_product_version','2.5.5'),(461,30,'_product_image_gallery','68,69'),(462,31,'_edit_last','1'),(463,31,'_edit_lock','1465517247:1'),(464,31,'_visibility','visible'),(465,31,'_stock_status','instock'),(466,31,'total_sales','0'),(467,31,'_downloadable','no'),(468,31,'_virtual','no'),(469,31,'_purchase_note',''),(470,31,'_featured','no'),(471,31,'_weight',''),(472,31,'_length',''),(473,31,'_width',''),(474,31,'_height',''),(475,31,'_sku',''),(476,31,'_product_attributes','a:0:{}'),(477,31,'_regular_price',''),(478,31,'_sale_price',''),(479,31,'_sale_price_dates_from',''),(480,31,'_sale_price_dates_to',''),(481,31,'_price',''),(482,31,'_sold_individually',''),(483,31,'_manage_stock','no'),(484,31,'_backorders','no'),(485,31,'_stock',''),(486,31,'_upsell_ids','a:0:{}'),(487,31,'_crosssell_ids','a:0:{}'),(488,31,'_product_version','2.5.5'),(489,31,'_product_image_gallery',''),(490,32,'_edit_last','1'),(491,32,'_edit_lock','1465517271:1'),(492,32,'_visibility','visible'),(493,32,'_stock_status','instock'),(494,32,'total_sales','0'),(495,32,'_downloadable','no'),(496,32,'_virtual','no'),(497,32,'_purchase_note',''),(498,32,'_featured','no'),(499,32,'_weight',''),(500,32,'_length',''),(501,32,'_width',''),(502,32,'_height',''),(503,32,'_sku',''),(504,32,'_product_attributes','a:0:{}'),(505,32,'_regular_price',''),(506,32,'_sale_price',''),(507,32,'_sale_price_dates_from',''),(508,32,'_sale_price_dates_to',''),(509,32,'_price',''),(510,32,'_sold_individually',''),(511,32,'_manage_stock','no'),(512,32,'_backorders','no'),(513,32,'_stock',''),(514,32,'_upsell_ids','a:0:{}'),(515,32,'_crosssell_ids','a:0:{}'),(516,32,'_product_version','2.5.5'),(517,32,'_product_image_gallery',''),(518,34,'_wp_attached_file','2016/06/Seaweed-extract-powder.jpg'),(519,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4320;s:6:\"height\";i:3240;s:4:\"file\";s:34:\"2016/06/Seaweed-extract-powder.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"Seaweed-extract-powder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Seaweed-extract-powder-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"Seaweed-extract-powder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:34:\"Seaweed-extract-powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DSC-W350\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329353933\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.7\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(548,32,'_thumbnail_id','34'),(521,23,'_wc_rating_count','a:0:{}'),(522,23,'_wc_average_rating','0'),(523,26,'_wc_rating_count','a:0:{}'),(524,26,'_wc_average_rating','0'),(525,27,'_wc_rating_count','a:0:{}'),(526,27,'_wc_average_rating','0'),(527,25,'_wc_rating_count','a:0:{}'),(528,25,'_wc_average_rating','0'),(529,29,'_wc_rating_count','a:0:{}'),(530,29,'_wc_average_rating','0'),(531,21,'_wc_rating_count','a:0:{}'),(532,21,'_wc_average_rating','0'),(533,22,'_wc_rating_count','a:0:{}'),(534,22,'_wc_average_rating','0'),(535,30,'_wc_rating_count','a:0:{}'),(536,30,'_wc_average_rating','0'),(537,20,'_wc_rating_count','a:0:{}'),(538,20,'_wc_average_rating','0'),(539,28,'_wc_rating_count','a:0:{}'),(540,28,'_wc_average_rating','0'),(541,31,'_wc_rating_count','a:0:{}'),(542,31,'_wc_average_rating','0'),(543,24,'_wc_rating_count','a:0:{}'),(544,24,'_wc_average_rating','0'),(545,32,'_wc_rating_count','a:0:{}'),(546,32,'_wc_average_rating','0'),(547,32,'_wc_review_count','0'),(549,35,'_edit_last','1'),(550,35,'_edit_lock','1486459434:1'),(551,35,'_visibility','visible'),(552,35,'_stock_status','instock'),(553,35,'total_sales','0'),(554,35,'_downloadable','no'),(555,35,'_virtual','no'),(556,35,'_purchase_note',''),(557,35,'_featured','no'),(558,35,'_weight',''),(559,35,'_length',''),(560,35,'_width',''),(561,35,'_height',''),(562,35,'_sku',''),(563,35,'_product_attributes','a:0:{}'),(564,35,'_regular_price',''),(565,35,'_sale_price',''),(566,35,'_sale_price_dates_from',''),(567,35,'_sale_price_dates_to',''),(568,35,'_price',''),(569,35,'_sold_individually',''),(570,35,'_manage_stock','no'),(571,35,'_backorders','no'),(572,35,'_stock',''),(573,35,'_upsell_ids','a:0:{}'),(574,35,'_crosssell_ids','a:0:{}'),(575,35,'_product_version','2.5.5'),(576,35,'_product_image_gallery',''),(577,36,'_edit_last','1'),(578,36,'_edit_lock','1485737256:1'),(579,36,'_visibility','visible'),(580,36,'_stock_status','instock'),(581,36,'total_sales','0'),(582,36,'_downloadable','no'),(583,36,'_virtual','no'),(584,36,'_purchase_note',''),(585,36,'_featured','no'),(586,36,'_weight',''),(587,36,'_length',''),(588,36,'_width',''),(589,36,'_height',''),(590,36,'_sku',''),(591,36,'_product_attributes','a:0:{}'),(592,36,'_regular_price',''),(593,36,'_sale_price',''),(594,36,'_sale_price_dates_from',''),(595,36,'_sale_price_dates_to',''),(596,36,'_price',''),(597,36,'_sold_individually',''),(598,36,'_manage_stock','no'),(599,36,'_backorders','no'),(600,36,'_stock',''),(601,36,'_upsell_ids','a:0:{}'),(602,36,'_crosssell_ids','a:0:{}'),(603,36,'_product_version','2.5.5'),(604,36,'_product_image_gallery','87,86,85'),(605,37,'_edit_last','1'),(606,37,'_edit_lock','1485737325:1'),(607,38,'_wp_attached_file','2016/06/Actifeed.jpg'),(608,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:202;s:6:\"height\";i:137;s:4:\"file\";s:20:\"2016/06/Actifeed.jpg\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Actifeed-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Actifeed-150x137.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Actifeed-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:20:\"Actifeed-174x137.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(609,39,'_wp_attached_file','2016/06/Saponin-molecule.jpg'),(610,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:266;s:6:\"height\";i:154;s:4:\"file\";s:28:\"2016/06/Saponin-molecule.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Saponin-molecule-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Saponin-molecule-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Saponin-molecule-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Saponin-molecule-250x154.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Saponin-molecule-174x154.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(611,40,'_wp_attached_file','2016/06/yucca3.jpg'),(612,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:202;s:6:\"height\";i:137;s:4:\"file\";s:18:\"2016/06/yucca3.jpg\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca3-150x137.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:18:\"yucca3-174x137.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(613,41,'_wp_attached_file','2016/06/yucca4.jpg'),(614,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:154;s:4:\"file\";s:18:\"2016/06/yucca4.jpg\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:18:\"yucca4-174x154.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(615,42,'_wp_attached_file','2016/06/yucca5.jpg'),(616,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:249;s:6:\"height\";i:202;s:4:\"file\";s:18:\"2016/06/yucca5.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"yucca5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:18:\"yucca5-249x200.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:18:\"yucca5-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(617,37,'_visibility','visible'),(618,37,'_stock_status','instock'),(619,37,'total_sales','0'),(620,37,'_downloadable','no'),(621,37,'_virtual','no'),(622,37,'_purchase_note',''),(623,37,'_featured','no'),(624,37,'_weight',''),(625,37,'_length',''),(626,37,'_width',''),(627,37,'_height',''),(628,37,'_sku',''),(629,37,'_product_attributes','a:0:{}'),(630,37,'_regular_price',''),(631,37,'_sale_price',''),(632,37,'_sale_price_dates_from',''),(633,37,'_sale_price_dates_to',''),(634,37,'_price',''),(635,37,'_sold_individually',''),(636,37,'_manage_stock','no'),(637,37,'_backorders','no'),(638,37,'_stock',''),(639,37,'_upsell_ids','a:0:{}'),(640,37,'_crosssell_ids','a:0:{}'),(641,37,'_product_version','2.5.5'),(642,37,'_product_image_gallery','92,91,95,96,97'),(643,35,'_wc_rating_count','a:0:{}'),(644,35,'_wc_average_rating','0'),(645,36,'_wc_rating_count','a:0:{}'),(646,36,'_wc_average_rating','0'),(647,37,'_wc_rating_count','a:0:{}'),(648,37,'_wc_average_rating','0'),(654,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(655,43,'_menu_item_xfn',''),(656,43,'_menu_item_url','http://manomaybiochem.com/#aboutus'),(657,44,'_menu_item_type','custom'),(658,44,'_menu_item_menu_item_parent','0'),(659,44,'_menu_item_object_id','44'),(660,44,'_menu_item_object','custom'),(661,44,'_menu_item_target',''),(662,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(663,44,'_menu_item_xfn',''),(664,44,'_menu_item_url','http://manomaybiochem.com/#contact'),(665,45,'_menu_item_type','custom'),(666,45,'_menu_item_menu_item_parent','0'),(667,45,'_menu_item_object_id','45'),(668,45,'_menu_item_object','custom'),(669,45,'_menu_item_target',''),(670,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(671,45,'_menu_item_xfn',''),(672,45,'_menu_item_url','http://manomaybiochem.com/#testimonials'),(673,46,'_wp_attached_file','2016/06/Manomay-Biochem.jpg'),(674,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:520;s:6:\"height\";i:416;s:4:\"file\";s:27:\"2016/06/Manomay-Biochem.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Manomay-Biochem-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"Manomay-Biochem-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-520x300.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Manomay-Biochem-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:2:\"A1\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1465040402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(675,46,'_edit_lock','1465321912:1'),(676,46,'_edit_last','1'),(677,30,'_wc_review_count','0'),(678,31,'_wc_review_count','0'),(679,20,'_wc_review_count','0'),(680,23,'_wc_review_count','0'),(681,26,'_wc_review_count','0'),(682,27,'_wc_review_count','0'),(683,25,'_wc_review_count','0'),(684,29,'_wc_review_count','0'),(685,21,'_wc_review_count','0'),(686,22,'_wc_review_count','0'),(687,35,'_wc_review_count','0'),(688,28,'_wc_review_count','0'),(689,24,'_wc_review_count','0'),(690,36,'_wc_review_count','0'),(691,37,'_wc_review_count','0'),(695,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:23:\"2016/06/Agar-Agar-1.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Agar-Agar-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"Agar-Agar-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-350x300.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-350x200.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(694,49,'_wp_attached_file','2016/06/Agar-Agar-1.jpg'),(696,23,'_thumbnail_id','49'),(697,50,'_wp_attached_file','2016/06/Agar-Agar-2.jpg'),(698,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:204;s:6:\"height\";i:136;s:4:\"file\";s:23:\"2016/06/Agar-Agar-2.jpg\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-2-150x136.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Agar-Agar-2-174x136.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(699,51,'_wp_attached_file','2016/06/Amino-Chilated-Copper-1.jpg'),(700,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:35:\"2016/06/Amino-Chilated-Copper-1.jpg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(701,26,'_thumbnail_id','51'),(702,52,'_wp_attached_file','2016/06/Amino-Chilated-Magnese-3.jpg'),(703,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:509;s:4:\"file\";s:36:\"2016/06/Amino-Chilated-Magnese-3.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-295x300.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(704,53,'_wp_attached_file','2016/06/Amino-Chilated-Magnese-1.jpg'),(705,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:36:\"2016/06/Amino-Chilated-Magnese-1.jpg\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Amino-Chilated-Magnese-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(706,27,'_thumbnail_id','52'),(707,54,'_wp_attached_file','2016/06/Amino-Chilated-Zinc-2.jpg'),(708,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:33:\"2016/06/Amino-Chilated-Zinc-2.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-2-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-2-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(709,55,'_wp_attached_file','2016/06/Amino-Chilated-Zinc-3.jpg'),(710,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:33:\"2016/06/Amino-Chilated-Zinc-3.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(711,56,'_wp_attached_file','2016/06/Amino-Chilated-Zinc-1.jpg'),(712,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:842;s:6:\"height\";i:842;s:4:\"file\";s:33:\"2016/06/Amino-Chilated-Zinc-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"Amino-Chilated-Zinc-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(713,25,'_thumbnail_id','54'),(714,57,'_wp_attached_file','2016/06/Beef-Extract-Powder-1.jpg'),(715,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:33:\"2016/06/Beef-Extract-Powder-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-1-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-1-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(716,58,'_wp_attached_file','2016/06/Beef-Extract-Powder-2.jpg'),(717,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:201;s:4:\"file\";s:33:\"2016/06/Beef-Extract-Powder-2.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-250x201.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-285x201.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"Beef-Extract-Powder-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(718,19,'_thumbnail_id','57'),(719,59,'_wp_attached_file','2016/06/Dextrose-Powder-1.jpg'),(720,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:265;s:6:\"height\";i:190;s:4:\"file\";s:29:\"2016/06/Dextrose-Powder-1.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-1-250x190.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(721,60,'_wp_attached_file','2016/06/Dextrose-Powder-2.jpg'),(722,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2016/06/Dextrose-Powder-2.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Dextrose-Powder-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"Dextrose-Powder-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Dextrose-Powder-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:27:\"email:info@brambleberry.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(724,29,'_thumbnail_id','60'),(725,61,'_wp_attached_file','2016/06/Folic-Acid-2.jpg'),(726,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:24:\"2016/06/Folic-Acid-2.jpg\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(727,62,'_wp_attached_file','2016/06/Folic-Acid-3.jpg'),(728,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:24:\"2016/06/Folic-Acid-3.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-3-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-3-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(729,63,'_wp_attached_file','2016/06/Folic-Acid-1.jpg'),(730,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:24:\"2016/06/Folic-Acid-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-1-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-1-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:24:\"Folic-Acid-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(731,21,'_thumbnail_id','63'),(732,64,'_wp_attached_file','2016/06/Fulvic-Acid-2.jpg'),(733,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2016/06/Fulvic-Acid-2.jpg\";s:5:\"sizes\";a:8:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(734,65,'_wp_attached_file','2016/06/Fulvic-Acid-3.jpg'),(735,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:224;s:4:\"file\";s:25:\"2016/06/Fulvic-Acid-3.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-3-224x200.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-3-224x214.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(736,66,'_wp_attached_file','2016/06/Fulvic-Acid-1.jpg'),(737,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:249;s:6:\"height\";i:203;s:4:\"file\";s:25:\"2016/06/Fulvic-Acid-1.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-1-249x200.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Fulvic-Acid-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(738,22,'_thumbnail_id','64'),(739,67,'_wp_attached_file','2016/06/Glycerol-1.jpg'),(740,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2016/06/Glycerol-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Glycerol-1-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Glycerol-1-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Glycerol-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(741,68,'_wp_attached_file','2016/06/Glycerol-2.jpg'),(742,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:266;s:4:\"file\";s:22:\"2016/06/Glycerol-2.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-2-190x250.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Glycerol-2-190x200.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Glycerol-2-190x214.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Glycerol-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(743,69,'_wp_attached_file','2016/06/Glycerol-3.jpg'),(744,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:289;s:4:\"file\";s:22:\"2016/06/Glycerol-3.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Glycerol-3-174x250.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Glycerol-3-174x200.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Glycerol-3-174x214.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Glycerol-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(745,30,'_thumbnail_id','67'),(746,70,'_wp_attached_file','2016/06/Malt-Powder-2.jpg'),(747,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:228;s:6:\"height\";i:221;s:4:\"file\";s:25:\"2016/06/Malt-Powder-2.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-2-228x200.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-2-228x214.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(748,71,'_wp_attached_file','2016/06/Malt-Powder-3.jpg'),(749,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2016/06/Malt-Powder-3.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(750,72,'_wp_attached_file','2016/06/Malt-Powder-1.jpg'),(751,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2016/06/Malt-Powder-1.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Malt-Powder-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(752,20,'_thumbnail_id','71'),(753,73,'_wp_attached_file','2016/06/Methylene-Blue-1.jpg'),(754,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2016/06/Methylene-Blue-1.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(755,74,'_wp_attached_file','2016/06/Methylene-Blue-2.jpg'),(756,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:28:\"2016/06/Methylene-Blue-2.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-2-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-2-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Methylene-Blue-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2506,228,'_wp_attached_file','2016/06/Methylene-Blue.jpg'),(2518,177,'_wc_review_count','0'),(758,76,'_wp_attached_file','2016/06/Peptone-Powder-1.jpg'),(759,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:137;s:4:\"file\";s:28:\"2016/06/Peptone-Powder-1.jpg\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-1-150x137.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-1-174x137.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(760,77,'_wp_attached_file','2016/06/Peptone-Powder-3.jpg'),(761,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:28:\"2016/06/Peptone-Powder-3.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Peptone-Powder-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-600x315.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Peptone-Powder-3-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Peptone-Powder-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-600x315.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Peptone-Powder-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(762,18,'_thumbnail_id','77'),(763,78,'_wp_attached_file','2016/06/Phosphoric-Acid-3.jpg'),(764,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:243;s:6:\"height\";i:208;s:4:\"file\";s:29:\"2016/06/Phosphoric-Acid-3.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-3-243x200.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(765,79,'_wp_attached_file','2016/06/Phosphoric-Acid-1.jpg'),(766,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:29:\"2016/06/Phosphoric-Acid-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-1-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-1-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(767,80,'_wp_attached_file','2016/06/Phosphoric-Acid-2.jpg'),(768,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:266;s:4:\"file\";s:29:\"2016/06/Phosphoric-Acid-2.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-2-190x250.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-2-190x200.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-2-190x214.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Phosphoric-Acid-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(769,28,'_thumbnail_id','79'),(770,81,'_wp_attached_file','2016/06/Protein-Hydrolysate-Powder-3.jpg'),(771,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:40:\"2016/06/Protein-Hydrolysate-Powder-3.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-3-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-3-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(772,82,'_wp_attached_file','2016/06/Protein-Hydrolysate-Powder-1.jpg'),(773,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:40:\"2016/06/Protein-Hydrolysate-Powder-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-1-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-1-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(774,83,'_wp_attached_file','2016/06/Protein-Hydrolysate-Powder-2.jpg'),(775,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:157;s:4:\"file\";s:40:\"2016/06/Protein-Hydrolysate-Powder-2.jpg\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:40:\"Protein-Hydrolysate-Powder-2-174x157.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(776,24,'_thumbnail_id','81'),(777,84,'_wp_attached_file','2016/06/Vitamin-C-1.jpg'),(778,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:752;s:4:\"file\";s:23:\"2016/06/Vitamin-C-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Vitamin-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-768x722.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"Vitamin-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(779,85,'_wp_attached_file','2016/06/Vitamin-C-2.jpg'),(780,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:23:\"2016/06/Vitamin-C-2.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-2-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-2-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(781,86,'_wp_attached_file','2016/06/Vitamin-C-3.jpg'),(782,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:421;s:6:\"height\";i:420;s:4:\"file\";s:23:\"2016/06/Vitamin-C-3.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Vitamin-C-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"Vitamin-C-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-421x300.jpg\";s:5:\"width\";i:421;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(783,87,'_wp_attached_file','2016/06/Vitamin-C-4.jpg'),(784,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2016/06/Vitamin-C-4.jpg\";s:5:\"sizes\";a:8:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-C-4-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(785,36,'_thumbnail_id','84'),(786,88,'_wp_attached_file','2016/06/Yeast-Powder-1.jpg'),(787,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:26:\"2016/06/Yeast-Powder-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-1-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-1-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(788,89,'_wp_attached_file','2016/06/Yeast-Powder-2.jpg'),(789,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:26:\"2016/06/Yeast-Powder-2.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-2-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-2-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yeast-Powder-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(790,10,'_thumbnail_id','88'),(791,90,'_wp_attached_file','2016/06/Yucca-Powder-3.jpg'),(792,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:26:\"2016/06/Yucca-Powder-3.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Yucca-Powder-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Yucca-Powder-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(793,91,'_wp_attached_file','2016/06/Yucca-Powder-1.jpg'),(794,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:199;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2016/06/Yucca-Powder-1.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-1-199x200.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(795,92,'_wp_attached_file','2016/06/Yucca-Powder-2.jpg'),(796,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:222;s:6:\"height\";i:227;s:4:\"file\";s:26:\"2016/06/Yucca-Powder-2.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-2-222x200.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-2-222x214.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Powder-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(797,37,'_thumbnail_id','92'),(798,95,'_wp_attached_file','2016/06/Yucca-Liquid-1.jpg'),(799,95,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2016/06/Yucca-Liquid-1.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(800,96,'_wp_attached_file','2016/06/Yucca-Liquid-2.jpg'),(801,96,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2016/06/Yucca-Liquid-2.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-2-196x250.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-2-196x200.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-2-196x214.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(802,97,'_wp_attached_file','2016/06/Yucca-Liquid-3.jpg'),(803,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2016/06/Yucca-Liquid-3.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Yucca-Liquid-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(804,95,'_wp_attachment_image_alt','Yucca Liquid'),(805,104,'_wp_attached_file','2016/06/Amino-Chilated-Copper-3.jpg'),(806,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:425;s:4:\"file\";s:35:\"2016/06/Amino-Chilated-Copper-3.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-600x421.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-600x421.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:35:\"Amino-Chilated-Copper-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(807,106,'_edit_last','1'),(808,106,'_edit_lock','1475141786:1'),(809,106,'_visibility','visible'),(810,106,'_stock_status','instock'),(811,106,'_downloadable','no'),(812,106,'_virtual','no'),(813,106,'_purchase_note',''),(814,106,'_featured','no'),(815,106,'_weight',''),(816,106,'_length',''),(817,106,'_width',''),(818,106,'_height',''),(819,106,'_sku',''),(820,106,'_product_attributes','a:0:{}'),(821,106,'_regular_price',''),(822,106,'_sale_price',''),(823,106,'_sale_price_dates_from',''),(824,106,'_sale_price_dates_to',''),(825,106,'_price',''),(826,106,'_sold_individually',''),(827,106,'_manage_stock','no'),(828,106,'_backorders','no'),(829,106,'_stock',''),(830,106,'_upsell_ids','a:0:{}'),(831,106,'_crosssell_ids','a:0:{}'),(832,106,'_product_version','2.5.5'),(833,106,'_product_image_gallery','96,97'),(835,106,'_thumbnail_id','95'),(836,106,'total_sales','0'),(837,108,'_edit_last','1'),(838,108,'_edit_lock','1485685656:1'),(839,109,'_wp_attached_file','2017/01/Lactose-1.jpg'),(840,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2017/01/Lactose-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Lactose-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"Lactose-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Lactose-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Lactose-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"Lactose-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"Lactose-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:21:\"Lactose-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:21:\"Lactose-1-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:21:\"Lactose-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:21:\"Lactose-1-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:21:\"Lactose-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:27:\"email:info@brambleberry.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(841,110,'_wp_attached_file','2017/01/Lactose-2.jpg'),(842,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:265;s:6:\"height\";i:190;s:4:\"file\";s:21:\"2017/01/Lactose-2.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Lactose-2-250x190.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:21:\"Lactose-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(937,108,'_thumbnail_id','109'),(844,108,'_visibility','visible'),(845,108,'_stock_status','instock'),(846,108,'total_sales','0'),(847,108,'_downloadable','no'),(848,108,'_virtual','no'),(849,108,'_purchase_note',''),(850,108,'_featured','no'),(851,108,'_weight',''),(852,108,'_length',''),(853,108,'_width',''),(854,108,'_height',''),(855,108,'_sku','Lactose'),(856,108,'_product_attributes','a:0:{}'),(857,108,'_regular_price',''),(858,108,'_sale_price',''),(859,108,'_sale_price_dates_from',''),(860,108,'_sale_price_dates_to',''),(861,108,'_price',''),(862,108,'_sold_individually',''),(863,108,'_manage_stock','no'),(864,108,'_backorders','no'),(865,108,'_stock',''),(866,108,'_upsell_ids','a:0:{}'),(867,108,'_crosssell_ids','a:0:{}'),(868,108,'_product_version','2.5.5'),(869,108,'_product_image_gallery','109,110'),(870,112,'_wp_attached_file','2017/01/Magnesium-Oxide-1.jpg'),(871,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:266;s:6:\"height\";i:257;s:4:\"file\";s:29:\"2017/01/Magnesium-Oxide-1.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-1-266x200.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-1-266x214.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(872,113,'_wp_attached_file','2017/01/Magnesium-Oxide-2.jpg'),(873,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:298;s:6:\"height\";i:212;s:4:\"file\";s:29:\"2017/01/Magnesium-Oxide-2.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-2-250x212.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-2-298x200.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-2-285x212.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Magnesium-Oxide-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Cloris\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1415886545\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(874,111,'_thumbnail_id','112'),(875,111,'_edit_last','1'),(876,111,'_edit_lock','1485686333:1'),(877,111,'_visibility','visible'),(878,111,'_stock_status','instock'),(879,111,'total_sales','0'),(880,111,'_downloadable','no'),(881,111,'_virtual','no'),(882,111,'_purchase_note',''),(883,111,'_featured','no'),(884,111,'_weight',''),(885,111,'_length',''),(886,111,'_width',''),(887,111,'_height',''),(888,111,'_sku','Magnesium Oxide'),(889,111,'_product_attributes','a:0:{}'),(890,111,'_regular_price',''),(891,111,'_sale_price',''),(892,111,'_sale_price_dates_from',''),(893,111,'_sale_price_dates_to',''),(894,111,'_price',''),(895,111,'_sold_individually',''),(896,111,'_manage_stock','no'),(897,111,'_backorders','no'),(898,111,'_stock',''),(899,111,'_upsell_ids','a:0:{}'),(900,111,'_crosssell_ids','a:0:{}'),(901,111,'_product_version','2.5.5'),(902,111,'_product_image_gallery','113,112'),(903,115,'_wp_attached_file','2017/01/Sodium-Selenite-2.jpg'),(904,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:29:\"2017/01/Sodium-Selenite-2.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-2-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-2-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(905,116,'_wp_attached_file','2017/01/Sodium-Selenite-1.jpg'),(906,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:29:\"2017/01/Sodium-Selenite-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-1-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-1-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Sodium-Selenite-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(907,114,'_edit_last','1'),(908,114,'_edit_lock','1485736277:1'),(909,114,'_thumbnail_id','115'),(910,114,'_visibility','visible'),(911,114,'_stock_status','instock'),(912,114,'total_sales','0'),(913,114,'_downloadable','no'),(914,114,'_virtual','no'),(915,114,'_purchase_note',''),(916,114,'_featured','no'),(917,114,'_weight',''),(918,114,'_length',''),(919,114,'_width',''),(920,114,'_height',''),(921,114,'_sku','Sodium Selenite'),(922,114,'_product_attributes','a:0:{}'),(923,114,'_regular_price',''),(924,114,'_sale_price',''),(925,114,'_sale_price_dates_from',''),(926,114,'_sale_price_dates_to',''),(927,114,'_price',''),(928,114,'_sold_individually',''),(929,114,'_manage_stock','no'),(930,114,'_backorders','no'),(931,114,'_stock',''),(932,114,'_upsell_ids','a:0:{}'),(933,114,'_crosssell_ids','a:0:{}'),(934,114,'_product_version','2.5.5'),(935,114,'_product_image_gallery','115,116'),(936,108,'_wc_review_count','0'),(938,117,'_wp_attached_file','2017/01/Chemical_Engineering.jpg'),(939,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2017/01/Chemical_Engineering.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Chemical_Engineering-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Chemical_Engineering-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"Chemical_Engineering-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:32:\"Chemical_Engineering-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:25:\"Alexander Raths - Fotolia\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:25:\"Alexander Raths - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:35:\"scientist working at the laboratory\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:3:\"lab\";i:1;s:10:\"laboratory\";i:2;s:7:\"student\";i:3;s:7:\"science\";i:4;s:7:\"chemist\";i:5;s:10:\"experiment\";i:6;s:8:\"research\";i:7;s:9:\"expertise\";i:8;s:8:\"hospital\";i:9;s:10:\"scientific\";i:10;s:6:\"liquid\";i:11;s:9:\"scientist\";i:12;s:5:\"women\";i:13;s:7:\"working\";i:14;s:6:\"beaker\";i:15;s:8:\"chemical\";i:16;s:9:\"chemistry\";i:17;s:10:\"researcher\";i:18;s:6:\"sample\";i:19;s:9:\"discovery\";i:20;s:3:\"dna\";i:21;s:6:\"doctor\";i:22;s:9:\"education\";i:23;s:4:\"exam\";i:24;s:10:\"healthcare\";i:25;s:7:\"medical\";i:26;s:8:\"medicine\";i:27;s:12:\"microbiology\";i:28;s:10:\"microscope\";i:29;s:10:\"petri dish\";i:30;s:10:\"occupation\";i:31;s:6:\"people\";i:32;s:12:\"professional\";i:33;s:4:\"atom\";i:34;s:9:\"attention\";i:35;s:9:\"structure\";i:36;s:9:\"molecular\";i:37;s:8:\"molecule\";i:38;s:5:\"model\";i:39;s:5:\"study\";i:40;s:10:\"technology\";i:41;s:4:\"tube\";i:42;s:6:\"tubing\";i:43;s:10:\"university\";i:44;s:8:\"analysis\";i:45;s:9:\"analyzing\";i:46;s:9:\"assistant\";i:47;s:13:\"concentration\";i:48;s:12:\"pharmacology\";i:49;s:7:\"teacher\";}}}'),(940,117,'_wp_attachment_is_custom_background','zerif-lite'),(941,118,'_edit_last','1'),(942,118,'_edit_lock','1485681716:1'),(943,119,'_wp_attached_file','2017/01/Acriflavine-1.jpg'),(944,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:385;s:4:\"file\";s:25:\"2017/01/Acriflavine-1.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Acriflavine-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"Acriflavine-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Acriflavine-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(945,118,'_thumbnail_id','119'),(946,120,'_wp_attached_file','2017/01/Acriflavine.jpg'),(947,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:23:\"2017/01/Acriflavine.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Acriflavine-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Acriflavine-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Acriflavine-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Acriflavine-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Acriflavine-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"Acriflavine-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Acriflavine-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:23:\"Acriflavine-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Acriflavine-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Acriflavine-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Acriflavine-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(948,118,'_visibility','visible'),(949,118,'_stock_status','instock'),(950,118,'total_sales','0'),(951,118,'_downloadable','no'),(952,118,'_virtual','no'),(953,118,'_purchase_note',''),(954,118,'_featured','no'),(955,118,'_weight',''),(956,118,'_length',''),(957,118,'_width',''),(958,118,'_height',''),(959,118,'_sku','Acriflavine'),(960,118,'_product_attributes','a:0:{}'),(961,118,'_regular_price',''),(962,118,'_sale_price',''),(963,118,'_sale_price_dates_from',''),(964,118,'_sale_price_dates_to',''),(965,118,'_price',''),(966,118,'_sold_individually',''),(967,118,'_manage_stock','no'),(968,118,'_backorders','no'),(969,118,'_stock',''),(970,118,'_upsell_ids','a:0:{}'),(971,118,'_crosssell_ids','a:0:{}'),(972,118,'_product_version','2.5.5'),(973,118,'_product_image_gallery','120'),(974,118,'_wc_review_count','0'),(975,6,'_edit_lock','1484202864:1'),(976,106,'_wc_review_count','0'),(977,114,'_wc_review_count','0'),(978,111,'_wc_review_count','0'),(979,123,'_edit_last','1'),(980,123,'_edit_lock','1486016094:1'),(981,123,'_thumbnail_id','68'),(982,123,'_visibility','visible'),(983,123,'_stock_status','instock'),(984,123,'total_sales','0'),(985,123,'_downloadable','no'),(986,123,'_virtual','no'),(987,123,'_purchase_note',''),(988,123,'_featured','no'),(989,123,'_weight',''),(990,123,'_length',''),(991,123,'_width',''),(992,123,'_height',''),(993,123,'_sku','acetone'),(994,123,'_product_attributes','a:0:{}'),(995,123,'_regular_price',''),(996,123,'_sale_price',''),(997,123,'_sale_price_dates_from',''),(998,123,'_sale_price_dates_to',''),(999,123,'_price',''),(1000,123,'_sold_individually',''),(1001,123,'_manage_stock','no'),(1002,123,'_backorders','no'),(1003,123,'_stock',''),(1004,123,'_upsell_ids','a:0:{}'),(1005,123,'_crosssell_ids','a:0:{}'),(1006,123,'_product_version','2.5.5'),(1007,123,'_product_image_gallery',''),(1008,125,'_edit_last','1'),(1009,125,'_visibility','visible'),(1010,125,'_stock_status','instock'),(1011,125,'total_sales','0'),(1012,125,'_downloadable','no'),(1013,125,'_virtual','no'),(1014,125,'_purchase_note',''),(1015,125,'_featured','no'),(1016,125,'_weight',''),(1017,125,'_length',''),(1018,125,'_width',''),(1019,125,'_height',''),(1020,125,'_sku','acid-slury'),(1021,125,'_product_attributes','a:0:{}'),(1022,125,'_regular_price',''),(1023,125,'_sale_price',''),(1024,125,'_sale_price_dates_from',''),(1025,125,'_sale_price_dates_to',''),(1026,125,'_price',''),(1027,125,'_sold_individually',''),(1028,125,'_manage_stock','no'),(1029,125,'_backorders','no'),(1030,125,'_stock',''),(1031,125,'_upsell_ids','a:0:{}'),(1032,125,'_crosssell_ids','a:0:{}'),(1033,125,'_product_version','2.5.5'),(1034,125,'_product_image_gallery',''),(1035,125,'_edit_lock','1485971196:1'),(1036,126,'_edit_last','1'),(1037,126,'_edit_lock','1485971391:1'),(1038,126,'_visibility','visible'),(1039,126,'_stock_status','instock'),(1040,126,'total_sales','0'),(1041,126,'_downloadable','no'),(1042,126,'_virtual','no'),(1043,126,'_purchase_note',''),(1044,126,'_featured','no'),(1045,126,'_weight',''),(1046,126,'_length',''),(1047,126,'_width',''),(1048,126,'_height',''),(1049,126,'_sku','borax'),(1050,126,'_product_attributes','a:0:{}'),(1051,126,'_regular_price',''),(1052,126,'_sale_price',''),(1053,126,'_sale_price_dates_from',''),(1054,126,'_sale_price_dates_to',''),(1055,126,'_price',''),(1056,126,'_sold_individually',''),(1057,126,'_manage_stock','no'),(1058,126,'_backorders','no'),(1059,126,'_stock',''),(1060,126,'_upsell_ids','a:0:{}'),(1061,126,'_crosssell_ids','a:0:{}'),(1062,126,'_product_version','2.5.5'),(1063,126,'_product_image_gallery',''),(1064,127,'_edit_last','1'),(1065,127,'_edit_lock','1485971457:1'),(1066,127,'_visibility','visible'),(1067,127,'_stock_status','instock'),(1068,127,'total_sales','0'),(1069,127,'_downloadable','no'),(1070,127,'_virtual','no'),(1071,127,'_purchase_note',''),(1072,127,'_featured','no'),(1073,127,'_weight',''),(1074,127,'_length',''),(1075,127,'_width',''),(1076,127,'_height',''),(1077,127,'_sku',''),(1078,127,'_product_attributes','a:0:{}'),(1079,127,'_regular_price',''),(1080,127,'_sale_price',''),(1081,127,'_sale_price_dates_from',''),(1082,127,'_sale_price_dates_to',''),(1083,127,'_price',''),(1084,127,'_sold_individually',''),(1085,127,'_manage_stock','no'),(1086,127,'_backorders','no'),(1087,127,'_stock',''),(1088,127,'_upsell_ids','a:0:{}'),(1089,127,'_crosssell_ids','a:0:{}'),(1090,127,'_product_version','2.5.5'),(1091,127,'_product_image_gallery',''),(1092,128,'_edit_last','1'),(1093,128,'_edit_lock','1485682151:1'),(1094,129,'_wp_attached_file','2017/01/Casein.jpg'),(1095,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2017/01/Casein.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"Casein-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Casein-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"Casein-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:18:\"Casein-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:18:\"Casein-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1096,128,'_thumbnail_id','129'),(1097,128,'_visibility','visible'),(1098,128,'_stock_status','instock'),(1099,128,'total_sales','0'),(1100,128,'_downloadable','no'),(1101,128,'_virtual','no'),(1102,128,'_purchase_note',''),(1103,128,'_featured','no'),(1104,128,'_weight',''),(1105,128,'_length',''),(1106,128,'_width',''),(1107,128,'_height',''),(1108,128,'_sku','Casein Protein Hydrolysate'),(1109,128,'_product_attributes','a:0:{}'),(1110,128,'_regular_price',''),(1111,128,'_sale_price',''),(1112,128,'_sale_price_dates_from',''),(1113,128,'_sale_price_dates_to',''),(1114,128,'_price',''),(1115,128,'_sold_individually',''),(1116,128,'_manage_stock','no'),(1117,128,'_backorders','no'),(1118,128,'_stock',''),(1119,128,'_upsell_ids','a:0:{}'),(1120,128,'_crosssell_ids','a:0:{}'),(1121,128,'_product_version','2.5.5'),(1122,128,'_product_image_gallery',''),(1123,130,'_edit_last','1'),(1124,130,'_edit_lock','1485971521:1'),(1125,130,'_visibility','visible'),(1126,130,'_stock_status','instock'),(1127,130,'total_sales','0'),(1128,130,'_downloadable','no'),(1129,130,'_virtual','no'),(1130,130,'_purchase_note',''),(1131,130,'_featured','no'),(1132,130,'_weight',''),(1133,130,'_length',''),(1134,130,'_width',''),(1135,130,'_height',''),(1136,130,'_sku','costic-soda'),(1137,130,'_product_attributes','a:0:{}'),(1138,130,'_regular_price',''),(1139,130,'_sale_price',''),(1140,130,'_sale_price_dates_from',''),(1141,130,'_sale_price_dates_to',''),(1142,130,'_price',''),(1143,130,'_sold_individually',''),(1144,130,'_manage_stock','no'),(1145,130,'_backorders','no'),(1146,130,'_stock',''),(1147,130,'_upsell_ids','a:0:{}'),(1148,130,'_crosssell_ids','a:0:{}'),(1149,130,'_product_version','2.5.5'),(1150,130,'_product_image_gallery',''),(1151,131,'_edit_last','1'),(1152,131,'_edit_lock','1485682401:1'),(1153,132,'_wp_attached_file','2017/01/Cinnamon-Oil.jpg'),(1154,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:184;s:6:\"height\";i:274;s:4:\"file\";s:24:\"2017/01/Cinnamon-Oil.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Cinnamon-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Cinnamon-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Cinnamon-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Cinnamon-Oil-184x250.jpg\";s:5:\"width\";i:184;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:24:\"Cinnamon-Oil-184x200.jpg\";s:5:\"width\";i:184;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:24:\"Cinnamon-Oil-184x214.jpg\";s:5:\"width\";i:184;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:24:\"Cinnamon-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1155,131,'_thumbnail_id','132'),(1156,131,'_visibility','visible'),(1157,131,'_stock_status','instock'),(1158,131,'total_sales','0'),(1159,131,'_downloadable','no'),(1160,131,'_virtual','no'),(1161,131,'_purchase_note',''),(1162,131,'_featured','no'),(1163,131,'_weight',''),(1164,131,'_length',''),(1165,131,'_width',''),(1166,131,'_height',''),(1167,131,'_sku',''),(1168,131,'_product_attributes','a:0:{}'),(1169,131,'_regular_price',''),(1170,131,'_sale_price',''),(1171,131,'_sale_price_dates_from',''),(1172,131,'_sale_price_dates_to',''),(1173,131,'_price',''),(1174,131,'_sold_individually',''),(1175,131,'_manage_stock','no'),(1176,131,'_backorders','no'),(1177,131,'_stock',''),(1178,131,'_upsell_ids','a:0:{}'),(1179,131,'_crosssell_ids','a:0:{}'),(1180,131,'_product_version','2.5.5'),(1181,131,'_product_image_gallery',''),(1182,133,'_edit_last','1'),(1183,133,'_edit_lock','1485971587:1'),(1184,133,'_visibility','visible'),(1185,133,'_stock_status','instock'),(1186,133,'total_sales','0'),(1187,133,'_downloadable','no'),(1188,133,'_virtual','no'),(1189,133,'_purchase_note',''),(1190,133,'_featured','no'),(1191,133,'_weight',''),(1192,133,'_length',''),(1193,133,'_width',''),(1194,133,'_height',''),(1195,133,'_sku','Citric Acid'),(1196,133,'_product_attributes','a:0:{}'),(1197,133,'_regular_price',''),(1198,133,'_sale_price',''),(1199,133,'_sale_price_dates_from',''),(1200,133,'_sale_price_dates_to',''),(1201,133,'_price',''),(1202,133,'_sold_individually',''),(1203,133,'_manage_stock','no'),(1204,133,'_backorders','no'),(1205,133,'_stock',''),(1206,133,'_upsell_ids','a:0:{}'),(1207,133,'_crosssell_ids','a:0:{}'),(1208,133,'_product_version','2.5.5'),(1209,133,'_product_image_gallery',''),(1210,134,'_edit_last','1'),(1211,134,'_edit_lock','1485682788:1'),(1212,135,'_wp_attached_file','2017/01/Citronella-Oil.jpg'),(1213,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2017/01/Citronella-Oil.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Citronella-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Citronella-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Citronella-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Citronella-Oil-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Citronella-Oil-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Citronella-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1214,134,'_thumbnail_id','135'),(1215,134,'_visibility','visible'),(1216,134,'_stock_status','instock'),(1217,134,'total_sales','0'),(1218,134,'_downloadable','no'),(1219,134,'_virtual','no'),(1220,134,'_purchase_note',''),(1221,134,'_featured','no'),(1222,134,'_weight',''),(1223,134,'_length',''),(1224,134,'_width',''),(1225,134,'_height',''),(1226,134,'_sku','Citronella Oil'),(1227,134,'_product_attributes','a:0:{}'),(1228,134,'_regular_price',''),(1229,134,'_sale_price',''),(1230,134,'_sale_price_dates_from',''),(1231,134,'_sale_price_dates_to',''),(1232,134,'_price',''),(1233,134,'_sold_individually',''),(1234,134,'_manage_stock','no'),(1235,134,'_backorders','no'),(1236,134,'_stock',''),(1237,134,'_upsell_ids','a:0:{}'),(1238,134,'_crosssell_ids','a:0:{}'),(1239,134,'_product_version','2.5.5'),(1240,134,'_product_image_gallery',''),(1241,136,'_edit_last','1'),(1242,136,'_edit_lock','1485682929:1'),(1243,137,'_wp_attached_file','2017/01/Clove-Oil.jpg'),(1244,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:21:\"2017/01/Clove-Oil.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Clove-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Clove-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Clove-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Clove-Oil-250x183.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:21:\"Clove-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1245,136,'_thumbnail_id','137'),(1246,136,'_visibility','visible'),(1247,136,'_stock_status','instock'),(1248,136,'total_sales','0'),(1249,136,'_downloadable','no'),(1250,136,'_virtual','no'),(1251,136,'_purchase_note',''),(1252,136,'_featured','no'),(1253,136,'_weight',''),(1254,136,'_length',''),(1255,136,'_width',''),(1256,136,'_height',''),(1257,136,'_sku','Clove Oil'),(1258,136,'_product_attributes','a:0:{}'),(1259,136,'_regular_price',''),(1260,136,'_sale_price',''),(1261,136,'_sale_price_dates_from',''),(1262,136,'_sale_price_dates_to',''),(1263,136,'_price',''),(1264,136,'_sold_individually',''),(1265,136,'_manage_stock','no'),(1266,136,'_backorders','no'),(1267,136,'_stock',''),(1268,136,'_upsell_ids','a:0:{}'),(1269,136,'_crosssell_ids','a:0:{}'),(1270,136,'_product_version','2.5.5'),(1271,136,'_product_image_gallery',''),(1272,139,'_edit_last','1'),(1273,139,'_edit_lock','1485683618:1'),(1274,140,'_wp_attached_file','2017/01/Copper-Sulphate.jpg'),(1275,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2017/01/Copper-Sulphate.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Copper-Sulphate-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"Copper-Sulphate-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Copper-Sulphate-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1276,139,'_thumbnail_id','140'),(1277,139,'_visibility','visible'),(1278,139,'_stock_status','instock'),(1279,139,'total_sales','0'),(1280,139,'_downloadable','no'),(1281,139,'_virtual','no'),(1282,139,'_purchase_note',''),(1283,139,'_featured','no'),(1284,139,'_weight',''),(1285,139,'_length',''),(1286,139,'_width',''),(1287,139,'_height',''),(1288,139,'_sku','Copper Sulphate'),(1289,139,'_product_attributes','a:0:{}'),(1290,139,'_regular_price',''),(1291,139,'_sale_price',''),(1292,139,'_sale_price_dates_from',''),(1293,139,'_sale_price_dates_to',''),(1294,139,'_price',''),(1295,139,'_sold_individually',''),(1296,139,'_manage_stock','no'),(1297,139,'_backorders','no'),(1298,139,'_stock',''),(1299,139,'_upsell_ids','a:0:{}'),(1300,139,'_crosssell_ids','a:0:{}'),(1301,139,'_product_version','2.5.5'),(1302,139,'_product_image_gallery',''),(1303,141,'_edit_last','1'),(1304,141,'_edit_lock','1485683811:1'),(1305,143,'_wp_attached_file','2017/01/Dimethyl-Formamide.jpg'),(1306,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:30:\"2017/01/Dimethyl-Formamide.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Formamide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Formamide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Formamide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Formamide-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Formamide-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Formamide-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1307,141,'_thumbnail_id','143'),(1308,141,'_visibility','visible'),(1309,141,'_stock_status','instock'),(1310,141,'total_sales','0'),(1311,141,'_downloadable','no'),(1312,141,'_virtual','no'),(1313,141,'_purchase_note',''),(1314,141,'_featured','no'),(1315,141,'_weight',''),(1316,141,'_length',''),(1317,141,'_width',''),(1318,141,'_height',''),(1319,141,'_sku','Dimethyl Formamide'),(1320,141,'_product_attributes','a:0:{}'),(1321,141,'_regular_price',''),(1322,141,'_sale_price',''),(1323,141,'_sale_price_dates_from',''),(1324,141,'_sale_price_dates_to',''),(1325,141,'_price',''),(1326,141,'_sold_individually',''),(1327,141,'_manage_stock','no'),(1328,141,'_backorders','no'),(1329,141,'_stock',''),(1330,141,'_upsell_ids','a:0:{}'),(1331,141,'_crosssell_ids','a:0:{}'),(1332,141,'_product_version','2.5.5'),(1333,141,'_product_image_gallery',''),(1334,144,'_edit_last','1'),(1335,144,'_edit_lock','1485971658:1'),(1336,144,'_visibility','visible'),(1337,144,'_stock_status','instock'),(1338,144,'total_sales','0'),(1339,144,'_downloadable','no'),(1340,144,'_virtual','no'),(1341,144,'_purchase_note',''),(1342,144,'_featured','no'),(1343,144,'_weight',''),(1344,144,'_length',''),(1345,144,'_width',''),(1346,144,'_height',''),(1347,144,'_sku','Dimethyl Sulfoxide'),(1348,144,'_product_attributes','a:0:{}'),(1349,144,'_regular_price',''),(1350,144,'_sale_price',''),(1351,144,'_sale_price_dates_from',''),(1352,144,'_sale_price_dates_to',''),(1353,144,'_price',''),(1354,144,'_sold_individually',''),(1355,144,'_manage_stock','no'),(1356,144,'_backorders','no'),(1357,144,'_stock',''),(1358,144,'_upsell_ids','a:0:{}'),(1359,144,'_crosssell_ids','a:0:{}'),(1360,144,'_product_version','2.5.5'),(1361,144,'_product_image_gallery',''),(1362,145,'_edit_last','1'),(1363,145,'_edit_lock','1485683990:1'),(1364,146,'_wp_attached_file','2017/01/Fish-Protein-Hydrolysate.jpg'),(1365,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:36:\"2017/01/Fish-Protein-Hydrolysate.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Fish-Protein-Hydrolysate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Fish-Protein-Hydrolysate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Fish-Protein-Hydrolysate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:36:\"Fish-Protein-Hydrolysate-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:36:\"Fish-Protein-Hydrolysate-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:36:\"Fish-Protein-Hydrolysate-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1366,145,'_thumbnail_id','146'),(1367,145,'_visibility','visible'),(1368,145,'_stock_status','instock'),(1369,145,'total_sales','0'),(1370,145,'_downloadable','no'),(1371,145,'_virtual','no'),(1372,145,'_purchase_note',''),(1373,145,'_featured','no'),(1374,145,'_weight',''),(1375,145,'_length',''),(1376,145,'_width',''),(1377,145,'_height',''),(1378,145,'_sku','Fish Protein Hydrolysate'),(1379,145,'_product_attributes','a:0:{}'),(1380,145,'_regular_price',''),(1381,145,'_sale_price',''),(1382,145,'_sale_price_dates_from',''),(1383,145,'_sale_price_dates_to',''),(1384,145,'_price',''),(1385,145,'_sold_individually',''),(1386,145,'_manage_stock','no'),(1387,145,'_backorders','no'),(1388,145,'_stock',''),(1389,145,'_upsell_ids','a:0:{}'),(1390,145,'_crosssell_ids','a:0:{}'),(1391,145,'_product_version','2.5.5'),(1392,145,'_product_image_gallery',''),(1393,147,'_edit_last','1'),(1394,147,'_edit_lock','1485684318:1'),(1395,148,'_wp_attached_file','2017/01/Garlic-Oil.png'),(1396,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:378;s:6:\"height\";i:233;s:4:\"file\";s:22:\"2017/01/Garlic-Oil.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"Garlic-Oil-300x233.png\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"Garlic-Oil-300x233.png\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-250x233.png\";s:5:\"width\";i:250;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-378x200.png\";s:5:\"width\";i:378;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Garlic-Oil-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1397,147,'_thumbnail_id','148'),(1398,147,'_visibility','visible'),(1399,147,'_stock_status','instock'),(1400,147,'total_sales','0'),(1401,147,'_downloadable','no'),(1402,147,'_virtual','no'),(1403,147,'_purchase_note',''),(1404,147,'_featured','no'),(1405,147,'_weight',''),(1406,147,'_length',''),(1407,147,'_width',''),(1408,147,'_height',''),(1409,147,'_sku','Garlic Oil'),(1410,147,'_product_attributes','a:0:{}'),(1411,147,'_regular_price',''),(1412,147,'_sale_price',''),(1413,147,'_sale_price_dates_from',''),(1414,147,'_sale_price_dates_to',''),(1415,147,'_price',''),(1416,147,'_sold_individually',''),(1417,147,'_manage_stock','no'),(1418,147,'_backorders','no'),(1419,147,'_stock',''),(1420,147,'_upsell_ids','a:0:{}'),(1421,147,'_crosssell_ids','a:0:{}'),(1422,147,'_product_version','2.5.5'),(1423,147,'_product_image_gallery',''),(1424,149,'_edit_last','1'),(1425,149,'_edit_lock','1485684407:1'),(1426,150,'_wp_attached_file','2017/01/Ginger-Oil.jpg'),(1427,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2017/01/Ginger-Oil.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Ginger-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Ginger-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Ginger-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Ginger-Oil-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Ginger-Oil-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Ginger-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1428,149,'_thumbnail_id','150'),(1429,149,'_visibility','visible'),(1430,149,'_stock_status','instock'),(1431,149,'total_sales','0'),(1432,149,'_downloadable','no'),(1433,149,'_virtual','no'),(1434,149,'_purchase_note',''),(1435,149,'_featured','no'),(1436,149,'_weight',''),(1437,149,'_length',''),(1438,149,'_width',''),(1439,149,'_height',''),(1440,149,'_sku','Ginger Oil'),(1441,149,'_product_attributes','a:0:{}'),(1442,149,'_regular_price',''),(1443,149,'_sale_price',''),(1444,149,'_sale_price_dates_from',''),(1445,149,'_sale_price_dates_to',''),(1446,149,'_price',''),(1447,149,'_sold_individually',''),(1448,149,'_manage_stock','no'),(1449,149,'_backorders','no'),(1450,149,'_stock',''),(1451,149,'_upsell_ids','a:0:{}'),(1452,149,'_crosssell_ids','a:0:{}'),(1453,149,'_product_version','2.5.5'),(1454,149,'_product_image_gallery',''),(1455,151,'_edit_last','1'),(1456,151,'_edit_lock','1485684484:1'),(1457,152,'_wp_attached_file','2017/01/Glacial-Acetic-Acid.png'),(1458,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:31:\"2017/01/Glacial-Acetic-Acid.png\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Glacial-Acetic-Acid-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Glacial-Acetic-Acid-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Glacial-Acetic-Acid-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:31:\"Glacial-Acetic-Acid-250x200.png\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:31:\"Glacial-Acetic-Acid-250x214.png\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:31:\"Glacial-Acetic-Acid-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1459,151,'_thumbnail_id','152'),(1460,151,'_visibility','visible'),(1461,151,'_stock_status','instock'),(1462,151,'total_sales','0'),(1463,151,'_downloadable','no'),(1464,151,'_virtual','no'),(1465,151,'_purchase_note',''),(1466,151,'_featured','no'),(1467,151,'_weight',''),(1468,151,'_length',''),(1469,151,'_width',''),(1470,151,'_height',''),(1471,151,'_sku','Glacial Acetic Acid'),(1472,151,'_product_attributes','a:0:{}'),(1473,151,'_regular_price',''),(1474,151,'_sale_price',''),(1475,151,'_sale_price_dates_from',''),(1476,151,'_sale_price_dates_to',''),(1477,151,'_price',''),(1478,151,'_sold_individually',''),(1479,151,'_manage_stock','no'),(1480,151,'_backorders','no'),(1481,151,'_stock',''),(1482,151,'_upsell_ids','a:0:{}'),(1483,151,'_crosssell_ids','a:0:{}'),(1484,151,'_product_version','2.5.5'),(1485,151,'_product_image_gallery',''),(1486,153,'_edit_last','1'),(1487,153,'_edit_lock','1485685369:1'),(1488,154,'_wp_attached_file','2017/01/Hydrogen-Peroxide.jpg'),(1489,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:29:\"2017/01/Hydrogen-Peroxide.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Hydrogen-Peroxide-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1490,153,'_thumbnail_id','154'),(1491,153,'_visibility','visible'),(1492,153,'_stock_status','instock'),(1493,153,'total_sales','0'),(1494,153,'_downloadable','no'),(1495,153,'_virtual','no'),(1496,153,'_purchase_note',''),(1497,153,'_featured','no'),(1498,153,'_weight',''),(1499,153,'_length',''),(1500,153,'_width',''),(1501,153,'_height',''),(1502,153,'_sku','Hydrogen Peroxide'),(1503,153,'_product_attributes','a:0:{}'),(1504,153,'_regular_price',''),(1505,153,'_sale_price',''),(1506,153,'_sale_price_dates_from',''),(1507,153,'_sale_price_dates_to',''),(1508,153,'_price',''),(1509,153,'_sold_individually',''),(1510,153,'_manage_stock','no'),(1511,153,'_backorders','no'),(1512,153,'_stock',''),(1513,153,'_upsell_ids','a:0:{}'),(1514,153,'_crosssell_ids','a:0:{}'),(1515,153,'_product_version','2.5.5'),(1516,153,'_product_image_gallery',''),(1517,155,'_edit_last','1'),(1518,155,'_edit_lock','1485685484:1'),(1519,156,'_wp_attached_file','2017/01/Iso-Propyl-Alcohol.jpg'),(1520,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:266;s:4:\"file\";s:30:\"2017/01/Iso-Propyl-Alcohol.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"Iso-Propyl-Alcohol-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Iso-Propyl-Alcohol-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Iso-Propyl-Alcohol-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"Iso-Propyl-Alcohol-190x250.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:30:\"Iso-Propyl-Alcohol-190x200.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:30:\"Iso-Propyl-Alcohol-190x214.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:30:\"Iso-Propyl-Alcohol-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1521,155,'_thumbnail_id','156'),(1522,155,'_visibility','visible'),(1523,155,'_stock_status','instock'),(1524,155,'total_sales','0'),(1525,155,'_downloadable','no'),(1526,155,'_virtual','no'),(1527,155,'_purchase_note',''),(1528,155,'_featured','no'),(1529,155,'_weight',''),(1530,155,'_length',''),(1531,155,'_width',''),(1532,155,'_height',''),(1533,155,'_sku','Iso Propyl Alcohol'),(1534,155,'_product_attributes','a:0:{}'),(1535,155,'_regular_price',''),(1536,155,'_sale_price',''),(1537,155,'_sale_price_dates_from',''),(1538,155,'_sale_price_dates_to',''),(1539,155,'_price',''),(1540,155,'_sold_individually',''),(1541,155,'_manage_stock','no'),(1542,155,'_backorders','no'),(1543,155,'_stock',''),(1544,155,'_upsell_ids','a:0:{}'),(1545,155,'_crosssell_ids','a:0:{}'),(1546,155,'_product_version','2.5.5'),(1547,155,'_product_image_gallery',''),(1548,157,'_edit_last','1'),(1549,157,'_edit_lock','1485685574:1'),(1550,158,'_wp_attached_file','2017/01/Karanja-Oil.jpg'),(1551,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2017/01/Karanja-Oil.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Karanja-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Karanja-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Karanja-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Karanja-Oil-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Karanja-Oil-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Karanja-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1552,157,'_thumbnail_id','158'),(1553,157,'_visibility','visible'),(1554,157,'_stock_status','instock'),(1555,157,'total_sales','0'),(1556,157,'_downloadable','no'),(1557,157,'_virtual','no'),(1558,157,'_purchase_note',''),(1559,157,'_featured','no'),(1560,157,'_weight',''),(1561,157,'_length',''),(1562,157,'_width',''),(1563,157,'_height',''),(1564,157,'_sku','Karanj Oil'),(1565,157,'_product_attributes','a:0:{}'),(1566,157,'_regular_price',''),(1567,157,'_sale_price',''),(1568,157,'_sale_price_dates_from',''),(1569,157,'_sale_price_dates_to',''),(1570,157,'_price',''),(1571,157,'_sold_individually',''),(1572,157,'_manage_stock','no'),(1573,157,'_backorders','no'),(1574,157,'_stock',''),(1575,157,'_upsell_ids','a:0:{}'),(1576,157,'_crosssell_ids','a:0:{}'),(1577,157,'_product_version','2.5.5'),(1578,157,'_product_image_gallery',''),(1579,159,'_edit_last','1'),(1580,159,'_edit_lock','1485685747:1'),(1581,160,'_wp_attached_file','2017/01/Lemon-Oil.jpg'),(1582,160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:259;s:6:\"height\";i:195;s:4:\"file\";s:21:\"2017/01/Lemon-Oil.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Lemon-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Lemon-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Lemon-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Lemon-Oil-250x195.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:21:\"Lemon-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1583,159,'_thumbnail_id','160'),(1584,159,'_visibility','visible'),(1585,159,'_stock_status','instock'),(1586,159,'total_sales','0'),(1587,159,'_downloadable','no'),(1588,159,'_virtual','no'),(1589,159,'_purchase_note',''),(1590,159,'_featured','no'),(1591,159,'_weight',''),(1592,159,'_length',''),(1593,159,'_width',''),(1594,159,'_height',''),(1595,159,'_sku','Lemon Oil'),(1596,159,'_product_attributes','a:0:{}'),(1597,159,'_regular_price',''),(1598,159,'_sale_price',''),(1599,159,'_sale_price_dates_from',''),(1600,159,'_sale_price_dates_to',''),(1601,159,'_price',''),(1602,159,'_sold_individually',''),(1603,159,'_manage_stock','no'),(1604,159,'_backorders','no'),(1605,159,'_stock',''),(1606,159,'_upsell_ids','a:0:{}'),(1607,159,'_crosssell_ids','a:0:{}'),(1608,159,'_product_version','2.5.5'),(1609,159,'_product_image_gallery',''),(1610,161,'_edit_last','1'),(1611,161,'_edit_lock','1485686087:1'),(1612,162,'_wp_attached_file','2017/01/Liquor-Ammonia.jpeg'),(1613,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:245;s:4:\"file\";s:27:\"2017/01/Liquor-Ammonia.jpeg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Liquor-Ammonia-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Liquor-Ammonia-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Liquor-Ammonia-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Liquor-Ammonia-205x200.jpeg\";s:5:\"width\";i:205;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Liquor-Ammonia-205x214.jpeg\";s:5:\"width\";i:205;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Liquor-Ammonia-174x174.jpeg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1614,161,'_thumbnail_id','162'),(1615,161,'_visibility','visible'),(1616,161,'_stock_status','instock'),(1617,161,'total_sales','0'),(1618,161,'_downloadable','no'),(1619,161,'_virtual','no'),(1620,161,'_purchase_note',''),(1621,161,'_featured','no'),(1622,161,'_weight',''),(1623,161,'_length',''),(1624,161,'_width',''),(1625,161,'_height',''),(1626,161,'_sku','Liquor Ammonia'),(1627,161,'_product_attributes','a:0:{}'),(1628,161,'_regular_price',''),(1629,161,'_sale_price',''),(1630,161,'_sale_price_dates_from',''),(1631,161,'_sale_price_dates_to',''),(1632,161,'_price',''),(1633,161,'_sold_individually',''),(1634,161,'_manage_stock','no'),(1635,161,'_backorders','no'),(1636,161,'_stock',''),(1637,161,'_upsell_ids','a:0:{}'),(1638,161,'_crosssell_ids','a:0:{}'),(1639,161,'_product_version','2.5.5'),(1640,161,'_product_image_gallery',''),(1641,163,'_edit_last','1'),(1642,163,'_edit_lock','1485686163:1'),(1643,164,'_wp_attached_file','2017/01/Liver-Extract-Paste.jpg'),(1644,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:31:\"2017/01/Liver-Extract-Paste.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Liver-Extract-Paste-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Liver-Extract-Paste-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Liver-Extract-Paste-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:31:\"Liver-Extract-Paste-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:31:\"Liver-Extract-Paste-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:31:\"Liver-Extract-Paste-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1645,163,'_thumbnail_id','164'),(1646,163,'_visibility','visible'),(1647,163,'_stock_status','instock'),(1648,163,'total_sales','0'),(1649,163,'_downloadable','no'),(1650,163,'_virtual','no'),(1651,163,'_purchase_note',''),(1652,163,'_featured','no'),(1653,163,'_weight',''),(1654,163,'_length',''),(1655,163,'_width',''),(1656,163,'_height',''),(1657,163,'_sku','Liver Extract Paste'),(1658,163,'_product_attributes','a:0:{}'),(1659,163,'_regular_price',''),(1660,163,'_sale_price',''),(1661,163,'_sale_price_dates_from',''),(1662,163,'_sale_price_dates_to',''),(1663,163,'_price',''),(1664,163,'_sold_individually',''),(1665,163,'_manage_stock','no'),(1666,163,'_backorders','no'),(1667,163,'_stock',''),(1668,163,'_upsell_ids','a:0:{}'),(1669,163,'_crosssell_ids','a:0:{}'),(1670,163,'_product_version','2.5.5'),(1671,163,'_product_image_gallery',''),(1672,166,'_wp_attached_file','2017/01/Liver-Extract-Powder.jpg'),(1673,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:228;s:6:\"height\";i:221;s:4:\"file\";s:32:\"2017/01/Liver-Extract-Powder.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Liver-Extract-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Liver-Extract-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Liver-Extract-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:32:\"Liver-Extract-Powder-228x200.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:32:\"Liver-Extract-Powder-228x214.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:32:\"Liver-Extract-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1674,165,'_thumbnail_id','166'),(1675,165,'_edit_last','1'),(1676,165,'_visibility','visible'),(1677,165,'_stock_status','instock'),(1678,165,'total_sales','0'),(1679,165,'_downloadable','no'),(1680,165,'_virtual','no'),(1681,165,'_purchase_note',''),(1682,165,'_featured','no'),(1683,165,'_weight',''),(1684,165,'_length',''),(1685,165,'_width',''),(1686,165,'_height',''),(1687,165,'_sku','Liver Extract Powder'),(1688,165,'_product_attributes','a:0:{}'),(1689,165,'_regular_price',''),(1690,165,'_sale_price',''),(1691,165,'_sale_price_dates_from',''),(1692,165,'_sale_price_dates_to',''),(1693,165,'_price',''),(1694,165,'_sold_individually',''),(1695,165,'_manage_stock','no'),(1696,165,'_backorders','no'),(1697,165,'_stock',''),(1698,165,'_upsell_ids','a:0:{}'),(1699,165,'_crosssell_ids','a:0:{}'),(1700,165,'_product_version','2.5.5'),(1701,165,'_product_image_gallery',''),(1702,165,'_edit_lock','1485686228:1'),(1703,167,'_edit_last','1'),(1704,167,'_edit_lock','1485686462:1'),(1705,170,'_wp_attached_file','2017/01/Malachite-Green.jpg'),(1706,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:222;s:6:\"height\";i:222;s:4:\"file\";s:27:\"2017/01/Malachite-Green.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Malachite-Green-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Malachite-Green-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Malachite-Green-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Malachite-Green-222x200.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Malachite-Green-222x214.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Malachite-Green-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1707,167,'_thumbnail_id','170'),(1708,167,'_visibility','visible'),(1709,167,'_stock_status','instock'),(1710,167,'total_sales','0'),(1711,167,'_downloadable','no'),(1712,167,'_virtual','no'),(1713,167,'_purchase_note',''),(1714,167,'_featured','no'),(1715,167,'_weight',''),(1716,167,'_length',''),(1717,167,'_width',''),(1718,167,'_height',''),(1719,167,'_sku','Malachite Green'),(1720,167,'_product_attributes','a:0:{}'),(1721,167,'_regular_price',''),(1722,167,'_sale_price',''),(1723,167,'_sale_price_dates_from',''),(1724,167,'_sale_price_dates_to',''),(1725,167,'_price',''),(1726,167,'_sold_individually',''),(1727,167,'_manage_stock','no'),(1728,167,'_backorders','no'),(1729,167,'_stock',''),(1730,167,'_upsell_ids','a:0:{}'),(1731,167,'_crosssell_ids','a:0:{}'),(1732,167,'_product_version','2.5.5'),(1733,167,'_product_image_gallery',''),(1734,171,'_edit_last','1'),(1735,171,'_edit_lock','1485686563:1'),(1736,172,'_wp_attached_file','2017/01/Malic-Acid.jpg'),(1737,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:752;s:4:\"file\";s:22:\"2017/01/Malic-Acid.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"Malic-Acid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-768x722.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"Malic-Acid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Malic-Acid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1738,171,'_thumbnail_id','172'),(1739,171,'_visibility','visible'),(1740,171,'_stock_status','instock'),(1741,171,'total_sales','0'),(1742,171,'_downloadable','no'),(1743,171,'_virtual','no'),(1744,171,'_purchase_note',''),(1745,171,'_featured','no'),(1746,171,'_weight',''),(1747,171,'_length',''),(1748,171,'_width',''),(1749,171,'_height',''),(1750,171,'_sku','Malic Acid'),(1751,171,'_product_attributes','a:0:{}'),(1752,171,'_regular_price',''),(1753,171,'_sale_price',''),(1754,171,'_sale_price_dates_from',''),(1755,171,'_sale_price_dates_to',''),(1756,171,'_price',''),(1757,171,'_sold_individually',''),(1758,171,'_manage_stock','no'),(1759,171,'_backorders','no'),(1760,171,'_stock',''),(1761,171,'_upsell_ids','a:0:{}'),(1762,171,'_crosssell_ids','a:0:{}'),(1763,171,'_product_version','2.5.5'),(1764,171,'_product_image_gallery',''),(1765,173,'_edit_last','1'),(1766,173,'_edit_lock','1485971897:1'),(1767,173,'_visibility','visible'),(1768,173,'_stock_status','instock'),(1769,173,'total_sales','0'),(1770,173,'_downloadable','no'),(1771,173,'_virtual','no'),(1772,173,'_purchase_note',''),(1773,173,'_featured','no'),(1774,173,'_weight',''),(1775,173,'_length',''),(1776,173,'_width',''),(1777,173,'_height',''),(1778,173,'_sku','Meat Extract powder'),(1779,173,'_product_attributes','a:0:{}'),(1780,173,'_regular_price',''),(1781,173,'_sale_price',''),(1782,173,'_sale_price_dates_from',''),(1783,173,'_sale_price_dates_to',''),(1784,173,'_price',''),(1785,173,'_sold_individually',''),(1786,173,'_manage_stock','no'),(1787,173,'_backorders','no'),(1788,173,'_stock',''),(1789,173,'_upsell_ids','a:0:{}'),(1790,173,'_crosssell_ids','a:0:{}'),(1791,173,'_product_version','2.5.5'),(1792,173,'_product_image_gallery',''),(1793,174,'_edit_last','1'),(1794,174,'_edit_lock','1485735948:1'),(2072,191,'_wp_attached_file','2017/01/Silver-Hydrogen-Peroxide.jpg'),(1796,174,'_visibility','visible'),(1797,174,'_stock_status','instock'),(1798,174,'total_sales','0'),(1799,174,'_downloadable','no'),(1800,174,'_virtual','no'),(1801,174,'_purchase_note',''),(1802,174,'_featured','no'),(1803,174,'_weight',''),(1804,174,'_length',''),(1805,174,'_width',''),(1806,174,'_height',''),(1807,174,'_sku','Nano Silver Hydrogen Peroxide'),(1808,174,'_product_attributes','a:0:{}'),(1809,174,'_regular_price',''),(1810,174,'_sale_price',''),(1811,174,'_sale_price_dates_from',''),(1812,174,'_sale_price_dates_to',''),(1813,174,'_price',''),(1814,174,'_sold_individually',''),(1815,174,'_manage_stock','no'),(1816,174,'_backorders','no'),(1817,174,'_stock',''),(1818,174,'_upsell_ids','a:0:{}'),(1819,174,'_crosssell_ids','a:0:{}'),(1820,174,'_product_version','2.5.5'),(1821,174,'_product_image_gallery',''),(1822,175,'_edit_last','1'),(1823,175,'_edit_lock','1485734639:1'),(1824,176,'_wp_attached_file','2017/01/Neem-Oil.jpg'),(1825,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2017/01/Neem-Oil.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Neem-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Neem-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Neem-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:20:\"Neem-Oil-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:20:\"Neem-Oil-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:20:\"Neem-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1826,175,'_thumbnail_id','176'),(1827,175,'_visibility','visible'),(1828,175,'_stock_status','instock'),(1829,175,'total_sales','0'),(1830,175,'_downloadable','no'),(1831,175,'_virtual','no'),(1832,175,'_purchase_note',''),(1833,175,'_featured','no'),(1834,175,'_weight',''),(1835,175,'_length',''),(1836,175,'_width',''),(1837,175,'_height',''),(1838,175,'_sku','Neem Oil'),(1839,175,'_product_attributes','a:0:{}'),(1840,175,'_regular_price',''),(1841,175,'_sale_price',''),(1842,175,'_sale_price_dates_from',''),(1843,175,'_sale_price_dates_to',''),(1844,175,'_price',''),(1845,175,'_sold_individually',''),(1846,175,'_manage_stock','no'),(1847,175,'_backorders','no'),(1848,175,'_stock',''),(1849,175,'_upsell_ids','a:0:{}'),(1850,175,'_crosssell_ids','a:0:{}'),(1851,175,'_product_version','2.5.5'),(1852,175,'_product_image_gallery',''),(1853,177,'_edit_last','1'),(1854,177,'_edit_lock','1485734949:1'),(1855,178,'_wp_attached_file','2017/01/Nitrobenzene.jpg'),(1856,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:380;s:4:\"file\";s:24:\"2017/01/Nitrobenzene.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Nitrobenzene-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-197x300.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"Nitrobenzene-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:24:\"Nitrobenzene-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1857,177,'_thumbnail_id','178'),(1858,177,'_visibility','visible'),(1859,177,'_stock_status','instock'),(1860,177,'total_sales','0'),(1861,177,'_downloadable','no'),(1862,177,'_virtual','no'),(1863,177,'_purchase_note',''),(1864,177,'_featured','no'),(1865,177,'_weight',''),(1866,177,'_length',''),(1867,177,'_width',''),(1868,177,'_height',''),(1869,177,'_sku','Nitrobenzene'),(1870,177,'_product_attributes','a:0:{}'),(1871,177,'_regular_price',''),(1872,177,'_sale_price',''),(1873,177,'_sale_price_dates_from',''),(1874,177,'_sale_price_dates_to',''),(1875,177,'_price',''),(1876,177,'_sold_individually',''),(1877,177,'_manage_stock','no'),(1878,177,'_backorders','no'),(1879,177,'_stock',''),(1880,177,'_upsell_ids','a:0:{}'),(1881,177,'_crosssell_ids','a:0:{}'),(1882,177,'_product_version','2.5.5'),(1883,177,'_product_image_gallery',''),(1884,179,'_edit_last','1'),(1885,179,'_edit_lock','1485735028:1'),(1886,180,'_wp_attached_file','2017/01/Pine-Oil.jpg'),(1887,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2017/01/Pine-Oil.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Pine-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Pine-Oil-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Pine-Oil-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:20:\"Pine-Oil-196x200.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:20:\"Pine-Oil-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1888,179,'_thumbnail_id','180'),(1889,179,'_visibility','visible'),(1890,179,'_stock_status','instock'),(1891,179,'total_sales','0'),(1892,179,'_downloadable','no'),(1893,179,'_virtual','no'),(1894,179,'_purchase_note',''),(1895,179,'_featured','no'),(1896,179,'_weight',''),(1897,179,'_length',''),(1898,179,'_width',''),(1899,179,'_height',''),(1900,179,'_sku','Pine Oil'),(1901,179,'_product_attributes','a:0:{}'),(1902,179,'_regular_price',''),(1903,179,'_sale_price',''),(1904,179,'_sale_price_dates_from',''),(1905,179,'_sale_price_dates_to',''),(1906,179,'_price',''),(1907,179,'_sold_individually',''),(1908,179,'_manage_stock','no'),(1909,179,'_backorders','no'),(1910,179,'_stock',''),(1911,179,'_upsell_ids','a:0:{}'),(1912,179,'_crosssell_ids','a:0:{}'),(1913,179,'_product_version','2.5.5'),(1914,179,'_product_image_gallery',''),(1915,181,'_edit_last','1'),(1916,181,'_edit_lock','1485735129:1'),(1917,182,'_wp_attached_file','2017/01/Polyelectrolyte-Powder.jpg'),(1918,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:34:\"2017/01/Polyelectrolyte-Powder.jpg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Polyelectrolyte-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Polyelectrolyte-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:34:\"Polyelectrolyte-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1919,181,'_thumbnail_id','182'),(1920,181,'_visibility','visible'),(1921,181,'_stock_status','instock'),(1922,181,'total_sales','0'),(1923,181,'_downloadable','no'),(1924,181,'_virtual','no'),(1925,181,'_purchase_note',''),(1926,181,'_featured','no'),(1927,181,'_weight',''),(1928,181,'_length',''),(1929,181,'_width',''),(1930,181,'_height',''),(1931,181,'_sku','Polyelectrolyte Anionic Powder'),(1932,181,'_product_attributes','a:0:{}'),(1933,181,'_regular_price',''),(1934,181,'_sale_price',''),(1935,181,'_sale_price_dates_from',''),(1936,181,'_sale_price_dates_to',''),(1937,181,'_price',''),(1938,181,'_sold_individually',''),(1939,181,'_manage_stock','no'),(1940,181,'_backorders','no'),(1941,181,'_stock',''),(1942,181,'_upsell_ids','a:0:{}'),(1943,181,'_crosssell_ids','a:0:{}'),(1944,181,'_product_version','2.5.5'),(1945,181,'_product_image_gallery',''),(1946,183,'_edit_last','1'),(1947,183,'_edit_lock','1485735236:1'),(1948,183,'_thumbnail_id','182'),(1949,183,'_visibility','visible'),(1950,183,'_stock_status','instock'),(1951,183,'total_sales','0'),(1952,183,'_downloadable','no'),(1953,183,'_virtual','no'),(1954,183,'_purchase_note',''),(1955,183,'_featured','no'),(1956,183,'_weight',''),(1957,183,'_length',''),(1958,183,'_width',''),(1959,183,'_height',''),(1960,183,'_sku','Polyelectrolyte Cationic Powder'),(1961,183,'_product_attributes','a:0:{}'),(1962,183,'_regular_price',''),(1963,183,'_sale_price',''),(1964,183,'_sale_price_dates_from',''),(1965,183,'_sale_price_dates_to',''),(1966,183,'_price',''),(1967,183,'_sold_individually',''),(1968,183,'_manage_stock','no'),(1969,183,'_backorders','no'),(1970,183,'_stock',''),(1971,183,'_upsell_ids','a:0:{}'),(1972,183,'_crosssell_ids','a:0:{}'),(1973,183,'_product_version','2.5.5'),(1974,183,'_product_image_gallery',''),(1975,184,'_edit_last','1'),(1976,184,'_edit_lock','1485735336:1'),(1977,185,'_wp_attached_file','2017/01/Polyethylene-Glycol-PEG.jpg'),(1978,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:35:\"2017/01/Polyethylene-Glycol-PEG.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Polyethylene-Glycol-PEG-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Polyethylene-Glycol-PEG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Polyethylene-Glycol-PEG-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:35:\"Polyethylene-Glycol-PEG-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:35:\"Polyethylene-Glycol-PEG-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:35:\"Polyethylene-Glycol-PEG-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1979,184,'_thumbnail_id','185'),(1980,184,'_visibility','visible'),(1981,184,'_stock_status','instock'),(1982,184,'total_sales','0'),(1983,184,'_downloadable','no'),(1984,184,'_virtual','no'),(1985,184,'_purchase_note',''),(1986,184,'_featured','no'),(1987,184,'_weight',''),(1988,184,'_length',''),(1989,184,'_width',''),(1990,184,'_height',''),(1991,184,'_sku','Polyethylene Glycol'),(1992,184,'_product_attributes','a:0:{}'),(1993,184,'_regular_price',''),(1994,184,'_sale_price',''),(1995,184,'_sale_price_dates_from',''),(1996,184,'_sale_price_dates_to',''),(1997,184,'_price',''),(1998,184,'_sold_individually',''),(1999,184,'_manage_stock','no'),(2000,184,'_backorders','no'),(2001,184,'_stock',''),(2002,184,'_upsell_ids','a:0:{}'),(2003,184,'_crosssell_ids','a:0:{}'),(2004,184,'_product_version','2.5.5'),(2005,184,'_product_image_gallery',''),(2006,186,'_edit_last','1'),(2007,186,'_edit_lock','1485735425:1'),(2008,187,'_wp_attached_file','2017/01/Potassium-Silicate.jpg'),(2009,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2017/01/Potassium-Silicate.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"Potassium-Silicate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Potassium-Silicate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Potassium-Silicate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:30:\"Potassium-Silicate-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:30:\"Potassium-Silicate-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2010,186,'_thumbnail_id','187'),(2011,186,'_visibility','visible'),(2012,186,'_stock_status','instock'),(2013,186,'total_sales','0'),(2014,186,'_downloadable','no'),(2015,186,'_virtual','no'),(2016,186,'_purchase_note',''),(2017,186,'_featured','no'),(2018,186,'_weight',''),(2019,186,'_length',''),(2020,186,'_width',''),(2021,186,'_height',''),(2022,186,'_sku','Potassium Silicate'),(2023,186,'_product_attributes','a:0:{}'),(2024,186,'_regular_price',''),(2025,186,'_sale_price',''),(2026,186,'_sale_price_dates_from',''),(2027,186,'_sale_price_dates_to',''),(2028,186,'_price',''),(2029,186,'_sold_individually',''),(2030,186,'_manage_stock','no'),(2031,186,'_backorders','no'),(2032,186,'_stock',''),(2033,186,'_upsell_ids','a:0:{}'),(2034,186,'_crosssell_ids','a:0:{}'),(2035,186,'_product_version','2.5.5'),(2036,186,'_product_image_gallery',''),(2037,188,'_edit_last','1'),(2038,188,'_edit_lock','1485735803:1'),(2039,189,'_wp_attached_file','2017/01/Precipitated-Silica.jpg'),(2040,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:210;s:4:\"file\";s:31:\"2017/01/Precipitated-Silica.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Precipitated-Silica-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Precipitated-Silica-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Precipitated-Silica-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:31:\"Precipitated-Silica-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:31:\"Precipitated-Silica-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2041,188,'_thumbnail_id','189'),(2042,188,'_visibility','visible'),(2043,188,'_stock_status','instock'),(2044,188,'total_sales','0'),(2045,188,'_downloadable','no'),(2046,188,'_virtual','no'),(2047,188,'_purchase_note',''),(2048,188,'_featured','no'),(2049,188,'_weight',''),(2050,188,'_length',''),(2051,188,'_width',''),(2052,188,'_height',''),(2053,188,'_sku','Precipitated Silica'),(2054,188,'_product_attributes','a:0:{}'),(2055,188,'_regular_price',''),(2056,188,'_sale_price',''),(2057,188,'_sale_price_dates_from',''),(2058,188,'_sale_price_dates_to',''),(2059,188,'_price',''),(2060,188,'_sold_individually',''),(2061,188,'_manage_stock','no'),(2062,188,'_backorders','no'),(2063,188,'_stock',''),(2064,188,'_upsell_ids','a:0:{}'),(2065,188,'_crosssell_ids','a:0:{}'),(2066,188,'_product_version','2.5.5'),(2067,188,'_product_image_gallery',''),(2988,127,'_wc_review_count','0'),(2989,130,'_wc_review_count','0'),(2990,236,'_wc_review_count','0'),(2073,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2017/01/Silver-Hydrogen-Peroxide.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:36:\"Silver-Hydrogen-Peroxide-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2074,174,'_thumbnail_id','191'),(2075,192,'_edit_last','1'),(2076,192,'_edit_lock','1485736035:1'),(2077,193,'_wp_attached_file','2017/01/Sodium-Benzoate.jpg'),(2078,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:27:\"2017/01/Sodium-Benzoate.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Sodium-Benzoate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Sodium-Benzoate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Sodium-Benzoate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Sodium-Benzoate-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Sodium-Benzoate-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Sodium-Benzoate-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2079,192,'_thumbnail_id','193'),(2080,192,'_visibility','visible'),(2081,192,'_stock_status','instock'),(2082,192,'total_sales','0'),(2083,192,'_downloadable','no'),(2084,192,'_virtual','no'),(2085,192,'_purchase_note',''),(2086,192,'_featured','no'),(2087,192,'_weight',''),(2088,192,'_length',''),(2089,192,'_width',''),(2090,192,'_height',''),(2091,192,'_sku','Sodium Benzoate'),(2092,192,'_product_attributes','a:0:{}'),(2093,192,'_regular_price',''),(2094,192,'_sale_price',''),(2095,192,'_sale_price_dates_from',''),(2096,192,'_sale_price_dates_to',''),(2097,192,'_price',''),(2098,192,'_sold_individually',''),(2099,192,'_manage_stock','no'),(2100,192,'_backorders','no'),(2101,192,'_stock',''),(2102,192,'_upsell_ids','a:0:{}'),(2103,192,'_crosssell_ids','a:0:{}'),(2104,192,'_product_version','2.5.5'),(2105,192,'_product_image_gallery',''),(2106,194,'_edit_last','1'),(2107,194,'_edit_lock','1485736190:1'),(2108,195,'_wp_attached_file','2017/01/Sodium-Metabisulphite.jpg'),(2109,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:421;s:6:\"height\";i:420;s:4:\"file\";s:33:\"2017/01/Sodium-Metabisulphite.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-421x300.jpg\";s:5:\"width\";i:421;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"Sodium-Metabisulphite-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2110,194,'_thumbnail_id','195'),(2111,194,'_visibility','visible'),(2112,194,'_stock_status','instock'),(2113,194,'total_sales','0'),(2114,194,'_downloadable','no'),(2115,194,'_virtual','no'),(2116,194,'_purchase_note',''),(2117,194,'_featured','no'),(2118,194,'_weight',''),(2119,194,'_length',''),(2120,194,'_width',''),(2121,194,'_height',''),(2122,194,'_sku','Sodium Metabisuphite'),(2123,194,'_product_attributes','a:0:{}'),(2124,194,'_regular_price',''),(2125,194,'_sale_price',''),(2126,194,'_sale_price_dates_from',''),(2127,194,'_sale_price_dates_to',''),(2128,194,'_price',''),(2129,194,'_sold_individually',''),(2130,194,'_manage_stock','no'),(2131,194,'_backorders','no'),(2132,194,'_stock',''),(2133,194,'_upsell_ids','a:0:{}'),(2134,194,'_crosssell_ids','a:0:{}'),(2135,194,'_product_version','2.5.5'),(2136,194,'_product_image_gallery',''),(2137,196,'_edit_last','1'),(2138,196,'_edit_lock','1485736445:1'),(2139,197,'_wp_attached_file','2017/01/Sodium-Benzoate-1.jpg'),(2140,197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:29:\"2017/01/Sodium-Benzoate-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Benzoate-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Benzoate-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sodium-Benzoate-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Sodium-Benzoate-1-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Sodium-Benzoate-1-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Sodium-Benzoate-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2141,196,'_thumbnail_id','197'),(2142,196,'_visibility','visible'),(2143,196,'_stock_status','instock'),(2144,196,'total_sales','0'),(2145,196,'_downloadable','no'),(2146,196,'_virtual','no'),(2147,196,'_purchase_note',''),(2148,196,'_featured','no'),(2149,196,'_weight',''),(2150,196,'_length',''),(2151,196,'_width',''),(2152,196,'_height',''),(2153,196,'_sku','Sodium Sulphate'),(2154,196,'_product_attributes','a:0:{}'),(2155,196,'_regular_price',''),(2156,196,'_sale_price',''),(2157,196,'_sale_price_dates_from',''),(2158,196,'_sale_price_dates_to',''),(2159,196,'_price',''),(2160,196,'_sold_individually',''),(2161,196,'_manage_stock','no'),(2162,196,'_backorders','no'),(2163,196,'_stock',''),(2164,196,'_upsell_ids','a:0:{}'),(2165,196,'_crosssell_ids','a:0:{}'),(2166,196,'_product_version','2.5.5'),(2167,196,'_product_image_gallery',''),(2168,198,'_edit_last','1'),(2169,198,'_edit_lock','1485736548:1'),(2170,199,'_wp_attached_file','2017/01/Soya-Peptone-Powder.jpg'),(2171,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:509;s:4:\"file\";s:31:\"2017/01/Soya-Peptone-Powder.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-295x300.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:31:\"Soya-Peptone-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2172,198,'_thumbnail_id','199'),(2173,198,'_visibility','visible'),(2174,198,'_stock_status','instock'),(2175,198,'total_sales','0'),(2176,198,'_downloadable','no'),(2177,198,'_virtual','no'),(2178,198,'_purchase_note',''),(2179,198,'_featured','no'),(2180,198,'_weight',''),(2181,198,'_length',''),(2182,198,'_width',''),(2183,198,'_height',''),(2184,198,'_sku',''),(2185,198,'_product_attributes','a:0:{}'),(2186,198,'_regular_price',''),(2187,198,'_sale_price',''),(2188,198,'_sale_price_dates_from',''),(2189,198,'_sale_price_dates_to',''),(2190,198,'_price',''),(2191,198,'_sold_individually',''),(2192,198,'_manage_stock','no'),(2193,198,'_backorders','no'),(2194,198,'_stock',''),(2195,198,'_upsell_ids','a:0:{}'),(2196,198,'_crosssell_ids','a:0:{}'),(2197,198,'_product_version','2.5.5'),(2198,198,'_product_image_gallery',''),(2199,200,'_edit_last','1'),(2200,200,'_edit_lock','1485736678:1'),(2201,201,'_wp_attached_file','2017/01/Streptomycin-Sulphate.png'),(2202,201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:33:\"2017/01/Streptomycin-Sulphate.png\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"Streptomycin-Sulphate-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2203,200,'_thumbnail_id','201'),(2204,200,'_visibility','visible'),(2205,200,'_stock_status','instock'),(2206,200,'total_sales','0'),(2207,200,'_downloadable','no'),(2208,200,'_virtual','no'),(2209,200,'_purchase_note',''),(2210,200,'_featured','no'),(2211,200,'_weight',''),(2212,200,'_length',''),(2213,200,'_width',''),(2214,200,'_height',''),(2215,200,'_sku','Streptomycin Sulphate'),(2216,200,'_product_attributes','a:0:{}'),(2217,200,'_regular_price',''),(2218,200,'_sale_price',''),(2219,200,'_sale_price_dates_from',''),(2220,200,'_sale_price_dates_to',''),(2221,200,'_price',''),(2222,200,'_sold_individually',''),(2223,200,'_manage_stock','no'),(2224,200,'_backorders','no'),(2225,200,'_stock',''),(2226,200,'_upsell_ids','a:0:{}'),(2227,200,'_crosssell_ids','a:0:{}'),(2228,200,'_product_version','2.5.5'),(2229,200,'_product_image_gallery',''),(2230,202,'_edit_last','1'),(2231,202,'_edit_lock','1485736742:1'),(2232,203,'_wp_attached_file','2017/01/Sulphamic-Acid.jpg'),(2233,203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:26:\"2017/01/Sulphamic-Acid.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Sulphamic-Acid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Sulphamic-Acid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-350x300.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-350x200.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Sulphamic-Acid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2234,202,'_thumbnail_id','203'),(2235,202,'_visibility','visible'),(2236,202,'_stock_status','instock'),(2237,202,'total_sales','0'),(2238,202,'_downloadable','no'),(2239,202,'_virtual','no'),(2240,202,'_purchase_note',''),(2241,202,'_featured','no'),(2242,202,'_weight',''),(2243,202,'_length',''),(2244,202,'_width',''),(2245,202,'_height',''),(2246,202,'_sku','Sulphamic Acid'),(2247,202,'_product_attributes','a:0:{}'),(2248,202,'_regular_price',''),(2249,202,'_sale_price',''),(2250,202,'_sale_price_dates_from',''),(2251,202,'_sale_price_dates_to',''),(2252,202,'_price',''),(2253,202,'_sold_individually',''),(2254,202,'_manage_stock','no'),(2255,202,'_backorders','no'),(2256,202,'_stock',''),(2257,202,'_upsell_ids','a:0:{}'),(2258,202,'_crosssell_ids','a:0:{}'),(2259,202,'_product_version','2.5.5'),(2260,202,'_product_image_gallery',''),(2261,204,'_edit_last','1'),(2262,204,'_edit_lock','1485736824:1'),(2263,205,'_wp_attached_file','2017/01/Tetracycline-HCL.jpg'),(2264,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:240;s:4:\"file\";s:28:\"2017/01/Tetracycline-HCL.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Tetracycline-HCL-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Tetracycline-HCL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Tetracycline-HCL-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Tetracycline-HCL-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:28:\"Tetracycline-HCL-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:28:\"Tetracycline-HCL-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Tetracycline-HCL-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2265,204,'_thumbnail_id','205'),(2266,204,'_visibility','visible'),(2267,204,'_stock_status','instock'),(2268,204,'total_sales','0'),(2269,204,'_downloadable','no'),(2270,204,'_virtual','no'),(2271,204,'_purchase_note',''),(2272,204,'_featured','no'),(2273,204,'_weight',''),(2274,204,'_length',''),(2275,204,'_width',''),(2276,204,'_height',''),(2277,204,'_sku','Tetracycline HCL'),(2278,204,'_product_attributes','a:0:{}'),(2279,204,'_regular_price',''),(2280,204,'_sale_price',''),(2281,204,'_sale_price_dates_from',''),(2282,204,'_sale_price_dates_to',''),(2283,204,'_price',''),(2284,204,'_sold_individually',''),(2285,204,'_manage_stock','no'),(2286,204,'_backorders','no'),(2287,204,'_stock',''),(2288,204,'_upsell_ids','a:0:{}'),(2289,204,'_crosssell_ids','a:0:{}'),(2290,204,'_product_version','2.5.5'),(2291,204,'_product_image_gallery',''),(2292,206,'_edit_last','1'),(2293,206,'_edit_lock','1485736910:1'),(2294,207,'_wp_attached_file','2017/01/Titanium-Dioxide.jpg'),(2295,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:187;s:4:\"file\";s:28:\"2017/01/Titanium-Dioxide.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Titanium-Dioxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Titanium-Dioxide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Titanium-Dioxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Titanium-Dioxide-250x187.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Titanium-Dioxide-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2296,206,'_thumbnail_id','207'),(2297,206,'_visibility','visible'),(2298,206,'_stock_status','instock'),(2299,206,'total_sales','0'),(2300,206,'_downloadable','no'),(2301,206,'_virtual','no'),(2302,206,'_purchase_note',''),(2303,206,'_featured','no'),(2304,206,'_weight',''),(2305,206,'_length',''),(2306,206,'_width',''),(2307,206,'_height',''),(2308,206,'_sku','Titanium Dioxide'),(2309,206,'_product_attributes','a:0:{}'),(2310,206,'_regular_price',''),(2311,206,'_sale_price',''),(2312,206,'_sale_price_dates_from',''),(2313,206,'_sale_price_dates_to',''),(2314,206,'_price',''),(2315,206,'_sold_individually',''),(2316,206,'_manage_stock','no'),(2317,206,'_backorders','no'),(2318,206,'_stock',''),(2319,206,'_upsell_ids','a:0:{}'),(2320,206,'_crosssell_ids','a:0:{}'),(2321,206,'_product_version','2.5.5'),(2322,206,'_product_image_gallery',''),(2323,208,'_edit_last','1'),(2324,208,'_edit_lock','1485737013:1'),(2325,209,'_wp_attached_file','2017/01/Tryptone-Powder.jpg'),(2326,209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:27:\"2017/01/Tryptone-Powder.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Tryptone-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Tryptone-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Tryptone-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Tryptone-Powder-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Tryptone-Powder-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Tryptone-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2327,208,'_thumbnail_id','209'),(2328,208,'_visibility','visible'),(2329,208,'_stock_status','instock'),(2330,208,'total_sales','0'),(2331,208,'_downloadable','no'),(2332,208,'_virtual','no'),(2333,208,'_purchase_note',''),(2334,208,'_featured','no'),(2335,208,'_weight',''),(2336,208,'_length',''),(2337,208,'_width',''),(2338,208,'_height',''),(2339,208,'_sku','Tryptone Powder'),(2340,208,'_product_attributes','a:0:{}'),(2341,208,'_regular_price',''),(2342,208,'_sale_price',''),(2343,208,'_sale_price_dates_from',''),(2344,208,'_sale_price_dates_to',''),(2345,208,'_price',''),(2346,208,'_sold_individually',''),(2347,208,'_manage_stock','no'),(2348,208,'_backorders','no'),(2349,208,'_stock',''),(2350,208,'_upsell_ids','a:0:{}'),(2351,208,'_crosssell_ids','a:0:{}'),(2352,208,'_product_version','2.5.5'),(2353,208,'_product_image_gallery',''),(2354,212,'_wp_attached_file','2017/01/Vitamin-AD3.jpg'),(2355,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2017/01/Vitamin-AD3.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-AD3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-AD3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Vitamin-AD3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Vitamin-AD3-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-AD3-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Vitamin-AD3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2356,211,'_thumbnail_id','212'),(2357,211,'_edit_last','1'),(2358,211,'_visibility','visible'),(2359,211,'_stock_status','instock'),(2360,211,'total_sales','0'),(2361,211,'_downloadable','no'),(2362,211,'_virtual','no'),(2363,211,'_purchase_note',''),(2364,211,'_featured','no'),(2365,211,'_weight',''),(2366,211,'_length',''),(2367,211,'_width',''),(2368,211,'_height',''),(2369,211,'_sku','Vitamin AD3'),(2370,211,'_product_attributes','a:0:{}'),(2371,211,'_regular_price',''),(2372,211,'_sale_price',''),(2373,211,'_sale_price_dates_from',''),(2374,211,'_sale_price_dates_to',''),(2375,211,'_price',''),(2376,211,'_sold_individually',''),(2377,211,'_manage_stock','no'),(2378,211,'_backorders','no'),(2379,211,'_stock',''),(2380,211,'_upsell_ids','a:0:{}'),(2381,211,'_crosssell_ids','a:0:{}'),(2382,211,'_product_version','2.5.5'),(2383,211,'_product_image_gallery',''),(2384,211,'_edit_lock','1485737139:1'),(2385,215,'_wp_attached_file','2017/01/Xanthan-Gum.jpg'),(2386,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:337;s:4:\"file\";s:23:\"2017/01/Xanthan-Gum.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Xanthan-Gum-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"Xanthan-Gum-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Xanthan-Gum-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:27:\"Xanthan gum in a small bowl\";s:17:\"created_timestamp\";s:10:\"1447256541\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:9:\"502190656\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2387,214,'_thumbnail_id','215'),(2388,214,'_edit_last','1'),(2389,214,'_visibility','visible'),(2390,214,'_stock_status','instock'),(2391,214,'total_sales','0'),(2392,214,'_downloadable','no'),(2393,214,'_virtual','no'),(2394,214,'_purchase_note',''),(2395,214,'_featured','no'),(2396,214,'_weight',''),(2397,214,'_length',''),(2398,214,'_width',''),(2399,214,'_height',''),(2400,214,'_sku','Xanthan Gum'),(2401,214,'_product_attributes','a:0:{}'),(2402,214,'_regular_price',''),(2403,214,'_sale_price',''),(2404,214,'_sale_price_dates_from',''),(2405,214,'_sale_price_dates_to',''),(2406,214,'_price',''),(2407,214,'_sold_individually',''),(2408,214,'_manage_stock','no'),(2409,214,'_backorders','no'),(2410,214,'_stock',''),(2411,214,'_upsell_ids','a:0:{}'),(2412,214,'_crosssell_ids','a:0:{}'),(2413,214,'_product_version','2.5.5'),(2414,214,'_product_image_gallery',''),(2415,214,'_edit_lock','1485737197:1'),(2416,216,'_edit_last','1'),(2417,216,'_edit_lock','1485737435:1'),(2418,218,'_wp_attached_file','2017/01/Zinc-Oxide.jpg'),(2419,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:22:\"2017/01/Zinc-Oxide.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"Zinc-Oxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"Zinc-Oxide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-350x300.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-350x200.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Zinc-Oxide-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2420,219,'_wp_attached_file','2017/01/Zinc-Sulphate.jpeg'),(2421,219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:309;s:6:\"height\";i:248;s:4:\"file\";s:26:\"2017/01/Zinc-Sulphate.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Zinc-Sulphate-300x248.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-300x241.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Zinc-Sulphate-300x248.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-250x248.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-309x200.jpeg\";s:5:\"width\";i:309;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-285x214.jpeg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Zinc-Sulphate-174x174.jpeg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2422,216,'_thumbnail_id','218'),(2423,216,'_visibility','visible'),(2424,216,'_stock_status','instock'),(2425,216,'total_sales','0'),(2426,216,'_downloadable','no'),(2427,216,'_virtual','no'),(2428,216,'_purchase_note',''),(2429,216,'_featured','no'),(2430,216,'_weight',''),(2431,216,'_length',''),(2432,216,'_width',''),(2433,216,'_height',''),(2434,216,'_sku','Zinc Oxide'),(2435,216,'_product_attributes','a:0:{}'),(2436,216,'_regular_price',''),(2437,216,'_sale_price',''),(2438,216,'_sale_price_dates_from',''),(2439,216,'_sale_price_dates_to',''),(2440,216,'_price',''),(2441,216,'_sold_individually',''),(2442,216,'_manage_stock','no'),(2443,216,'_backorders','no'),(2444,216,'_stock',''),(2445,216,'_upsell_ids','a:0:{}'),(2446,216,'_crosssell_ids','a:0:{}'),(2447,216,'_product_version','2.5.5'),(2448,216,'_product_image_gallery',''),(2449,220,'_edit_last','1'),(2450,220,'_edit_lock','1486619178:1'),(2451,220,'_thumbnail_id','219'),(2452,220,'_visibility','visible'),(2453,220,'_stock_status','instock'),(2454,220,'total_sales','0'),(2455,220,'_downloadable','no'),(2456,220,'_virtual','no'),(2457,220,'_purchase_note',''),(2458,220,'_featured','no'),(2459,220,'_weight',''),(2460,220,'_length',''),(2461,220,'_width',''),(2462,220,'_height',''),(2463,220,'_sku','Zinc Sulphate'),(2464,220,'_product_attributes','a:0:{}'),(2465,220,'_regular_price',''),(2466,220,'_sale_price',''),(2467,220,'_sale_price_dates_from',''),(2468,220,'_sale_price_dates_to',''),(2469,220,'_price',''),(2470,220,'_sold_individually',''),(2471,220,'_manage_stock','no'),(2472,220,'_backorders','no'),(2473,220,'_stock',''),(2474,220,'_upsell_ids','a:0:{}'),(2475,220,'_crosssell_ids','a:0:{}'),(2476,220,'_product_version','2.5.5'),(2477,220,'_product_image_gallery',''),(2478,123,'_wc_review_count','0'),(2479,125,'_wc_review_count','0'),(2480,220,'_wc_review_count','0'),(2481,139,'_wc_review_count','0'),(2482,145,'_wc_review_count','0'),(2483,221,'_wp_attached_file','2017/01/Acid-Slurry.jpg'),(2484,221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2017/01/Acid-Slurry.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Acid-Slurry-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Acid-Slurry-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Acid-Slurry-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Acid-Slurry-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Acid-Slurry-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Acid-Slurry-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2485,125,'_thumbnail_id','221'),(2486,222,'_wp_attached_file','2017/01/Borax.jpg'),(2487,222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:421;s:6:\"height\";i:420;s:4:\"file\";s:17:\"2017/01/Borax.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"Borax-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"Borax-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Borax-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Borax-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"Borax-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"Borax-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"Borax-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:17:\"Borax-421x300.jpg\";s:5:\"width\";i:421;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"Borax-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"Borax-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"Borax-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2488,126,'_thumbnail_id','222'),(2489,126,'_wc_review_count','0'),(2490,223,'_wp_attached_file','2017/01/Boric-Acid.jpg'),(2491,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2017/01/Boric-Acid.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Boric-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Boric-Acid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Boric-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:22:\"Boric-Acid-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:22:\"Boric-Acid-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:22:\"Boric-Acid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2492,127,'_thumbnail_id','223'),(2493,224,'_wp_attached_file','2017/01/Caustic-Soda.jpg'),(2494,224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:187;s:4:\"file\";s:24:\"2017/01/Caustic-Soda.jpg\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Caustic-Soda-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Caustic-Soda-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Caustic-Soda-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:24:\"Caustic-Soda-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2495,130,'_thumbnail_id','224'),(2496,225,'_wp_attached_file','2017/01/Citric-Acid.jpg'),(2497,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:266;s:6:\"height\";i:257;s:4:\"file\";s:23:\"2017/01/Citric-Acid.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Citric-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Citric-Acid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Citric-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Citric-Acid-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Citric-Acid-266x200.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Citric-Acid-266x214.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Citric-Acid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2498,133,'_thumbnail_id','225'),(2499,226,'_wp_attached_file','2017/01/Dimethyl-Sulfoxide.jpg'),(2500,226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:30:\"2017/01/Dimethyl-Sulfoxide.jpg\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Sulfoxide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Dimethyl-Sulfoxide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2501,144,'_thumbnail_id','226'),(2502,144,'_wc_review_count','0'),(2503,227,'_wp_attached_file','2017/01/Meat-Extract-Powder.jpg'),(2504,227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2017/01/Meat-Extract-Powder.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Meat-Extract-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Meat-Extract-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Meat-Extract-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:31:\"Meat-Extract-Powder-225x200.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:31:\"Meat-Extract-Powder-225x214.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:31:\"Meat-Extract-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2505,173,'_thumbnail_id','227'),(2507,228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2016/06/Methylene-Blue.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Methylene-Blue-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Methylene-Blue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Methylene-Blue-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Methylene-Blue-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Methylene-Blue-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Methylene-Blue-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2508,35,'_thumbnail_id','228'),(2509,171,'_wc_review_count','0'),(2510,179,'_wc_review_count','0'),(2511,181,'_wc_review_count','0'),(2512,167,'_wc_review_count','0'),(2513,196,'_wc_review_count','0'),(2514,173,'_wc_review_count','0'),(2515,163,'_wc_review_count','0'),(2516,188,'_wc_review_count','0'),(2517,208,'_wc_review_count','0'),(2519,214,'_wc_review_count','0'),(2520,202,'_wc_review_count','0'),(2524,233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:252;s:4:\"file\";s:24:\"2017/02/Benzoic-Acid.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Benzoic-Acid-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"Benzoic-Acid-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:24:\"Benzoic-Acid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2523,233,'_wp_attached_file','2017/02/Benzoic-Acid.jpg'),(2525,232,'_thumbnail_id','233'),(2526,232,'_edit_last','1'),(2527,232,'_edit_lock','1487039320:1'),(2528,232,'_visibility','visible'),(2529,232,'_stock_status','instock'),(2530,232,'total_sales','0'),(2531,232,'_downloadable','no'),(2532,232,'_virtual','no'),(2533,232,'_purchase_note',''),(2534,232,'_featured','no'),(2535,232,'_weight',''),(2536,232,'_length',''),(2537,232,'_width',''),(2538,232,'_height',''),(2539,232,'_sku','Benzoic Acid'),(2540,232,'_product_attributes','a:0:{}'),(2541,232,'_regular_price',''),(2542,232,'_sale_price',''),(2543,232,'_sale_price_dates_from',''),(2544,232,'_sale_price_dates_to',''),(2545,232,'_price',''),(2546,232,'_sold_individually',''),(2547,232,'_manage_stock','no'),(2548,232,'_backorders','no'),(2549,232,'_stock',''),(2550,232,'_upsell_ids','a:0:{}'),(2551,232,'_crosssell_ids','a:0:{}'),(2552,232,'_product_version','2.5.5'),(2553,232,'_product_image_gallery',''),(2554,234,'_edit_last','1'),(2555,234,'_edit_lock','1487039490:1'),(2556,235,'_wp_attached_file','2017/02/Bile-Extract-Powder.jpg'),(2557,235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:183;s:6:\"height\";i:220;s:4:\"file\";s:31:\"2017/02/Bile-Extract-Powder.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Bile-Extract-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Bile-Extract-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Bile-Extract-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:31:\"Bile-Extract-Powder-183x200.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:31:\"Bile-Extract-Powder-183x214.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:31:\"Bile-Extract-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2558,234,'_thumbnail_id','235'),(2559,234,'_visibility','visible'),(2560,234,'_stock_status','instock'),(2561,234,'total_sales','0'),(2562,234,'_downloadable','no'),(2563,234,'_virtual','no'),(2564,234,'_purchase_note',''),(2565,234,'_featured','no'),(2566,234,'_weight',''),(2567,234,'_length',''),(2568,234,'_width',''),(2569,234,'_height',''),(2570,234,'_sku','Bile Extract Powder'),(2571,234,'_product_attributes','a:0:{}'),(2572,234,'_regular_price',''),(2573,234,'_sale_price',''),(2574,234,'_sale_price_dates_from',''),(2575,234,'_sale_price_dates_to',''),(2576,234,'_price',''),(2577,234,'_sold_individually',''),(2578,234,'_manage_stock','no'),(2579,234,'_backorders','no'),(2580,234,'_stock',''),(2581,234,'_upsell_ids','a:0:{}'),(2582,234,'_crosssell_ids','a:0:{}'),(2583,234,'_product_version','2.5.5'),(2584,234,'_product_image_gallery',''),(2585,234,'_wc_review_count','0'),(2589,234,'_aioseop_title','Bile Extract Powder'),(2588,234,'_aioseop_keywords','Bile, Extract, Powder, Bile Extract Powder'),(2590,236,'_edit_last','1'),(2591,236,'_edit_lock','1487039583:1'),(2592,237,'_wp_attached_file','2017/02/Choline-Chloride.jpg'),(2593,237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:28:\"2017/02/Choline-Chloride.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Choline-Chloride-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Choline-Chloride-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Choline-Chloride-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:28:\"Choline-Chloride-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:28:\"Choline-Chloride-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Choline-Chloride-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2594,236,'_thumbnail_id','237'),(2595,236,'_visibility','visible'),(2596,236,'_stock_status','instock'),(2597,236,'total_sales','0'),(2598,236,'_downloadable','no'),(2599,236,'_virtual','no'),(2600,236,'_purchase_note',''),(2601,236,'_featured','no'),(2602,236,'_weight',''),(2603,236,'_length',''),(2604,236,'_width',''),(2605,236,'_height',''),(2606,236,'_sku','Choline Chloride'),(2607,236,'_product_attributes','a:0:{}'),(2608,236,'_regular_price',''),(2609,236,'_sale_price',''),(2610,236,'_sale_price_dates_from',''),(2611,236,'_sale_price_dates_to',''),(2612,236,'_price',''),(2613,236,'_sold_individually',''),(2614,236,'_manage_stock','no'),(2615,236,'_backorders','no'),(2616,236,'_stock',''),(2617,236,'_upsell_ids','a:0:{}'),(2618,236,'_crosssell_ids','a:0:{}'),(2619,236,'_product_version','2.5.5'),(2620,236,'_product_image_gallery',''),(2621,238,'_edit_last','1'),(2622,238,'_edit_lock','1487039675:1'),(2623,239,'_wp_attached_file','2017/02/DL-Methionine.jpg'),(2624,239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2017/02/DL-Methionine.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"DL-Methionine-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DL-Methionine-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"DL-Methionine-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"DL-Methionine-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:25:\"DL-Methionine-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"DL-Methionine-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2625,238,'_thumbnail_id','239'),(2626,238,'_visibility','visible'),(2627,238,'_stock_status','instock'),(2628,238,'total_sales','0'),(2629,238,'_downloadable','no'),(2630,238,'_virtual','no'),(2631,238,'_purchase_note',''),(2632,238,'_featured','no'),(2633,238,'_weight',''),(2634,238,'_length',''),(2635,238,'_width',''),(2636,238,'_height',''),(2637,238,'_sku','DL Methionine'),(2638,238,'_product_attributes','a:0:{}'),(2639,238,'_regular_price',''),(2640,238,'_sale_price',''),(2641,238,'_sale_price_dates_from',''),(2642,238,'_sale_price_dates_to',''),(2643,238,'_price',''),(2644,238,'_sold_individually',''),(2645,238,'_manage_stock','no'),(2646,238,'_backorders','no'),(2647,238,'_stock',''),(2648,238,'_upsell_ids','a:0:{}'),(2649,238,'_crosssell_ids','a:0:{}'),(2650,238,'_product_version','2.5.5'),(2651,238,'_product_image_gallery',''),(2652,240,'_edit_last','1'),(2653,240,'_edit_lock','1487039749:1'),(2654,241,'_wp_attached_file','2017/02/Ferrous-Sulphate.jpg'),(2655,241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:187;s:4:\"file\";s:28:\"2017/02/Ferrous-Sulphate.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Ferrous-Sulphate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Ferrous-Sulphate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Ferrous-Sulphate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Ferrous-Sulphate-250x187.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Ferrous-Sulphate-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2656,240,'_thumbnail_id','241'),(2657,240,'_visibility','visible'),(2658,240,'_stock_status','instock'),(2659,240,'total_sales','0'),(2660,240,'_downloadable','no'),(2661,240,'_virtual','no'),(2662,240,'_purchase_note',''),(2663,240,'_featured','no'),(2664,240,'_weight',''),(2665,240,'_length',''),(2666,240,'_width',''),(2667,240,'_height',''),(2668,240,'_sku','Ferrous Sulphate'),(2669,240,'_product_attributes','a:0:{}'),(2670,240,'_regular_price',''),(2671,240,'_sale_price',''),(2672,240,'_sale_price_dates_from',''),(2673,240,'_sale_price_dates_to',''),(2674,240,'_price',''),(2675,240,'_sold_individually',''),(2676,240,'_manage_stock','no'),(2677,240,'_backorders','no'),(2678,240,'_stock',''),(2679,240,'_upsell_ids','a:0:{}'),(2680,240,'_crosssell_ids','a:0:{}'),(2681,240,'_product_version','2.5.5'),(2682,240,'_product_image_gallery',''),(2683,242,'_edit_last','1'),(2684,242,'_edit_lock','1487039908:1'),(2685,243,'_wp_attached_file','2017/02/Gelatin-Powder.jpg'),(2686,243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2017/02/Gelatin-Powder.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Gelatin-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Gelatin-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Gelatin-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Gelatin-Powder-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Gelatin-Powder-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Gelatin-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2688,244,'_wp_attached_file','2017/02/Gentian-Violet.jpg'),(2689,244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2017/02/Gentian-Violet.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Gentian-Violet-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Gentian-Violet-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Gentian-Violet-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Gentian-Violet-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Gentian-Violet-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Gentian-Violet-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2690,242,'_thumbnail_id','244'),(2691,242,'_visibility','visible'),(2692,242,'_stock_status','instock'),(2693,242,'total_sales','0'),(2694,242,'_downloadable','no'),(2695,242,'_virtual','no'),(2696,242,'_purchase_note',''),(2697,242,'_featured','no'),(2698,242,'_weight',''),(2699,242,'_length',''),(2700,242,'_width',''),(2701,242,'_height',''),(2702,242,'_sku','Gentian Violet'),(2703,242,'_product_attributes','a:0:{}'),(2704,242,'_regular_price',''),(2705,242,'_sale_price',''),(2706,242,'_sale_price_dates_from',''),(2707,242,'_sale_price_dates_to',''),(2708,242,'_price',''),(2709,242,'_sold_individually',''),(2710,242,'_manage_stock','no'),(2711,242,'_backorders','no'),(2712,242,'_stock',''),(2713,242,'_upsell_ids','a:0:{}'),(2714,242,'_crosssell_ids','a:0:{}'),(2715,242,'_product_version','2.5.5'),(2716,242,'_product_image_gallery','243'),(2717,245,'_edit_last','1'),(2718,245,'_edit_lock','1487039992:1'),(2719,246,'_wp_attached_file','2017/02/Guar-Gum-Powder.jpg'),(2720,246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:27:\"2017/02/Guar-Gum-Powder.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Guar-Gum-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Guar-Gum-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Guar-Gum-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Guar-Gum-Powder-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Guar-Gum-Powder-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Guar-Gum-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2721,245,'_thumbnail_id','246'),(2722,245,'_visibility','visible'),(2723,245,'_stock_status','instock'),(2724,245,'total_sales','0'),(2725,245,'_downloadable','no'),(2726,245,'_virtual','no'),(2727,245,'_purchase_note',''),(2728,245,'_featured','no'),(2729,245,'_weight',''),(2730,245,'_length',''),(2731,245,'_width',''),(2732,245,'_height',''),(2733,245,'_sku','Guar Gum Powder'),(2734,245,'_product_attributes','a:0:{}'),(2735,245,'_regular_price',''),(2736,245,'_sale_price',''),(2737,245,'_sale_price_dates_from',''),(2738,245,'_sale_price_dates_to',''),(2739,245,'_price',''),(2740,245,'_sold_individually',''),(2741,245,'_manage_stock','no'),(2742,245,'_backorders','no'),(2743,245,'_stock',''),(2744,245,'_upsell_ids','a:0:{}'),(2745,245,'_crosssell_ids','a:0:{}'),(2746,245,'_product_version','2.5.5'),(2747,245,'_product_image_gallery',''),(2748,247,'_edit_last','1'),(2749,247,'_edit_lock','1487040119:1'),(2750,248,'_wp_attached_file','2017/02/Mannan-Oligo-Saccharide-MOS.jpeg'),(2751,248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:40:\"2017/02/Mannan-Oligo-Saccharide-MOS.jpeg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Mannan-Oligo-Saccharide-MOS-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Mannan-Oligo-Saccharide-MOS-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Mannan-Oligo-Saccharide-MOS-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:40:\"Mannan-Oligo-Saccharide-MOS-250x200.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:40:\"Mannan-Oligo-Saccharide-MOS-250x214.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:40:\"Mannan-Oligo-Saccharide-MOS-174x174.jpeg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2752,247,'_thumbnail_id','248'),(2753,247,'_visibility','visible'),(2754,247,'_stock_status','instock'),(2755,247,'total_sales','0'),(2756,247,'_downloadable','no'),(2757,247,'_virtual','no'),(2758,247,'_purchase_note',''),(2759,247,'_featured','no'),(2760,247,'_weight',''),(2761,247,'_length',''),(2762,247,'_width',''),(2763,247,'_height',''),(2764,247,'_sku','MannanOligo Saccharide'),(2765,247,'_product_attributes','a:0:{}'),(2766,247,'_regular_price',''),(2767,247,'_sale_price',''),(2768,247,'_sale_price_dates_from',''),(2769,247,'_sale_price_dates_to',''),(2770,247,'_price',''),(2771,247,'_sold_individually',''),(2772,247,'_manage_stock','no'),(2773,247,'_backorders','no'),(2774,247,'_stock',''),(2775,247,'_upsell_ids','a:0:{}'),(2776,247,'_crosssell_ids','a:0:{}'),(2777,247,'_product_version','2.5.5'),(2778,247,'_product_image_gallery',''),(2779,249,'_edit_last','1'),(2780,249,'_edit_lock','1487040196:1'),(2781,249,'_visibility','visible'),(2782,249,'_stock_status','instock'),(2783,249,'total_sales','0'),(2784,249,'_downloadable','no'),(2785,249,'_virtual','no'),(2786,249,'_purchase_note',''),(2787,249,'_featured','no'),(2788,249,'_weight',''),(2789,249,'_length',''),(2790,249,'_width',''),(2791,249,'_height',''),(2792,249,'_sku','Mannitol'),(2793,249,'_product_attributes','a:0:{}'),(2794,249,'_regular_price',''),(2795,249,'_sale_price',''),(2796,249,'_sale_price_dates_from',''),(2797,249,'_sale_price_dates_to',''),(2798,249,'_price',''),(2799,249,'_sold_individually',''),(2800,249,'_manage_stock','no'),(2801,249,'_backorders','no'),(2802,249,'_stock',''),(2803,249,'_upsell_ids','a:0:{}'),(2804,249,'_crosssell_ids','a:0:{}'),(2805,249,'_product_version','2.5.5'),(2806,249,'_product_image_gallery',''),(2807,251,'_wp_attached_file','2017/02/Niacin.jpg'),(2808,251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2017/02/Niacin.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"Niacin-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"Niacin-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Niacin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Niacin-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"Niacin-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"Niacin-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"Niacin-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:18:\"Niacin-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:18:\"Niacin-285x200.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:18:\"Niacin-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2809,250,'_thumbnail_id','251'),(2810,250,'_edit_last','1'),(2811,250,'_visibility','visible'),(2812,250,'_stock_status','instock'),(2813,250,'total_sales','0'),(2814,250,'_downloadable','no'),(2815,250,'_virtual','no'),(2816,250,'_purchase_note',''),(2817,250,'_featured','no'),(2818,250,'_weight',''),(2819,250,'_length',''),(2820,250,'_width',''),(2821,250,'_height',''),(2822,250,'_sku','Niacin'),(2823,250,'_product_attributes','a:0:{}'),(2824,250,'_regular_price',''),(2825,250,'_sale_price',''),(2826,250,'_sale_price_dates_from',''),(2827,250,'_sale_price_dates_to',''),(2828,250,'_price',''),(2829,250,'_sold_individually',''),(2830,250,'_manage_stock','no'),(2831,250,'_backorders','no'),(2832,250,'_stock',''),(2833,250,'_upsell_ids','a:0:{}'),(2834,250,'_crosssell_ids','a:0:{}'),(2835,250,'_product_version','2.5.5'),(2836,250,'_product_image_gallery',''),(2837,250,'_edit_lock','1487040249:1'),(2838,252,'_edit_last','1'),(2839,252,'_edit_lock','1487040375:1'),(2840,253,'_wp_attached_file','2017/02/Potassium-Sorbate.jpg'),(2841,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:240;s:4:\"file\";s:29:\"2017/02/Potassium-Sorbate.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Potassium-Sorbate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Potassium-Sorbate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Potassium-Sorbate-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Potassium-Sorbate-240x200.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Potassium-Sorbate-240x214.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Potassium-Sorbate-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2842,252,'_thumbnail_id','253'),(2843,252,'_visibility','visible'),(2844,252,'_stock_status','instock'),(2845,252,'total_sales','0'),(2846,252,'_downloadable','no'),(2847,252,'_virtual','no'),(2848,252,'_purchase_note',''),(2849,252,'_featured','no'),(2850,252,'_weight',''),(2851,252,'_length',''),(2852,252,'_width',''),(2853,252,'_height',''),(2854,252,'_sku','Potassium Sorbate'),(2855,252,'_product_attributes','a:0:{}'),(2856,252,'_regular_price',''),(2857,252,'_sale_price',''),(2858,252,'_sale_price_dates_from',''),(2859,252,'_sale_price_dates_to',''),(2860,252,'_price',''),(2861,252,'_sold_individually',''),(2862,252,'_manage_stock','no'),(2863,252,'_backorders','no'),(2864,252,'_stock',''),(2865,252,'_upsell_ids','a:0:{}'),(2866,252,'_crosssell_ids','a:0:{}'),(2867,252,'_product_version','2.5.5'),(2868,252,'_product_image_gallery',''),(2869,254,'_edit_last','1'),(2870,254,'_edit_lock','1487040456:1'),(2871,255,'_wp_attached_file','2017/02/Salicylic-Acid.jpg'),(2872,255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:258;s:4:\"file\";s:26:\"2017/02/Salicylic-Acid.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Salicylic-Acid-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Salicylic-Acid-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"Salicylic-Acid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2873,254,'_thumbnail_id','255'),(2874,254,'_visibility','visible'),(2875,254,'_stock_status','instock'),(2876,254,'total_sales','0'),(2877,254,'_downloadable','no'),(2878,254,'_virtual','no'),(2879,254,'_purchase_note',''),(2880,254,'_featured','no'),(2881,254,'_weight',''),(2882,254,'_length',''),(2883,254,'_width',''),(2884,254,'_height',''),(2885,254,'_sku','Salicylic Acid'),(2886,254,'_product_attributes','a:0:{}'),(2887,254,'_regular_price',''),(2888,254,'_sale_price',''),(2889,254,'_sale_price_dates_from',''),(2890,254,'_sale_price_dates_to',''),(2891,254,'_price',''),(2892,254,'_sold_individually',''),(2893,254,'_manage_stock','no'),(2894,254,'_backorders','no'),(2895,254,'_stock',''),(2896,254,'_upsell_ids','a:0:{}'),(2897,254,'_crosssell_ids','a:0:{}'),(2898,254,'_product_version','2.5.5'),(2899,254,'_product_image_gallery',''),(2900,256,'_edit_last','1'),(2901,256,'_edit_lock','1487040548:1'),(2902,257,'_wp_attached_file','2017/02/Sorbic-Acid.jpg'),(2903,257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:4:\"file\";s:23:\"2017/02/Sorbic-Acid.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Sorbic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sorbic-Acid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Sorbic-Acid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"Sorbic-Acid-220x200.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"Sorbic-Acid-220x214.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"Sorbic-Acid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2904,256,'_thumbnail_id','257'),(2905,256,'_visibility','visible'),(2906,256,'_stock_status','instock'),(2907,256,'total_sales','0'),(2908,256,'_downloadable','no'),(2909,256,'_virtual','no'),(2910,256,'_purchase_note',''),(2911,256,'_featured','no'),(2912,256,'_weight',''),(2913,256,'_length',''),(2914,256,'_width',''),(2915,256,'_height',''),(2916,256,'_sku','Sorbic Acid'),(2917,256,'_product_attributes','a:0:{}'),(2918,256,'_regular_price',''),(2919,256,'_sale_price',''),(2920,256,'_sale_price_dates_from',''),(2921,256,'_sale_price_dates_to',''),(2922,256,'_price',''),(2923,256,'_sold_individually',''),(2924,256,'_manage_stock','no'),(2925,256,'_backorders','no'),(2926,256,'_stock',''),(2927,256,'_upsell_ids','a:0:{}'),(2928,256,'_crosssell_ids','a:0:{}'),(2929,256,'_product_version','2.5.5'),(2930,256,'_product_image_gallery',''),(2931,258,'_edit_last','1'),(2932,258,'_edit_lock','1487040663:1'),(2933,259,'_wp_attached_file','2017/02/Spirulina-Powder.jpg'),(2934,259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2017/02/Spirulina-Powder.jpg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Spirulina-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Spirulina-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Spirulina-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:28:\"Spirulina-Powder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Spirulina-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2935,258,'_thumbnail_id','259'),(2936,258,'_visibility','visible'),(2937,258,'_stock_status','instock'),(2938,258,'total_sales','0'),(2939,258,'_downloadable','no'),(2940,258,'_virtual','no'),(2941,258,'_purchase_note',''),(2942,258,'_featured','no'),(2943,258,'_weight',''),(2944,258,'_length',''),(2945,258,'_width',''),(2946,258,'_height',''),(2947,258,'_sku','Spirulina Powder'),(2948,258,'_product_attributes','a:0:{}'),(2949,258,'_regular_price',''),(2950,258,'_sale_price',''),(2951,258,'_sale_price_dates_from',''),(2952,258,'_sale_price_dates_to',''),(2953,258,'_price',''),(2954,258,'_sold_individually',''),(2955,258,'_manage_stock','no'),(2956,258,'_backorders','no'),(2957,258,'_stock',''),(2958,258,'_upsell_ids','a:0:{}'),(2959,258,'_crosssell_ids','a:0:{}'),(2960,258,'_product_version','2.5.5'),(2961,258,'_product_image_gallery',''),(2962,254,'_wc_review_count','0'),(2963,261,'_wp_attached_file','2017/02/images.png'),(2964,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:66;s:6:\"height\";i:58;s:4:\"file\";s:18:\"2017/02/images.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2965,262,'_wp_attached_file','2017/02/conf_fish_feed.jpg'),(2966,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:26:\"2017/02/conf_fish_feed.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2967,232,'_wc_review_count','0'),(2968,134,'_wc_review_count','0'),(2969,147,'_wc_review_count','0'),(2970,157,'_wc_review_count','0'),(2971,250,'_wc_review_count','0'),(2972,149,'_wc_review_count','0'),(2973,151,'_wc_review_count','0'),(2974,216,'_wc_review_count','0'),(2975,258,'_wc_review_count','0'),(2976,242,'_wc_review_count','0'),(2977,192,'_wc_review_count','0'),(2978,198,'_wc_review_count','0'),(2979,256,'_wc_review_count','0'),(2980,240,'_wc_review_count','0'),(2981,194,'_wc_review_count','0'),(2982,238,'_wc_review_count','0'),(2983,133,'_wc_review_count','0'),(2984,141,'_wc_review_count','0'),(2985,200,'_wc_review_count','0'),(2986,245,'_wc_review_count','0'),(2987,136,'_wc_review_count','0'),(2991,206,'_wc_review_count','0'),(2992,153,'_wc_review_count','0'),(2993,204,'_wc_review_count','0'),(2994,165,'_wc_review_count','0'),(2995,247,'_wc_review_count','0'),(2996,186,'_wc_review_count','0'),(2997,184,'_wc_review_count','0'),(2998,249,'_wc_review_count','0'),(2999,175,'_wc_review_count','0'),(3000,174,'_wc_review_count','0'),(3001,252,'_wc_review_count','0'),(3002,131,'_wc_review_count','0'),(3003,155,'_wc_review_count','0'),(3004,211,'_wc_review_count','0'),(3005,128,'_wc_review_count','0'),(3006,183,'_wc_review_count','0'),(3007,264,'_edit_last','1'),(3008,264,'_edit_lock','1495793969:1'),(3009,265,'_wp_attached_file','2017/05/FISH-FEED-1.jpg'),(3010,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:23:\"2017/05/FISH-FEED-1.jpg\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"FISH-FEED-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"FISH-FEED-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"FISH-FEED-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"FISH-FEED-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"FISH-FEED-1-270x200.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"FISH-FEED-1-270x214.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"FISH-FEED-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3011,264,'_thumbnail_id','265'),(3012,264,'_visibility','visible'),(3013,264,'_stock_status','instock'),(3041,264,'_aioseop_title','Floating Fish Feed'),(3040,264,'_aioseop_keywords','Manomay biochem, Floating Fish Feed, Fish Feed'),(3016,264,'total_sales','0'),(3017,264,'_downloadable','no'),(3018,264,'_virtual','no'),(3019,264,'_purchase_note',''),(3020,264,'_featured','no'),(3021,264,'_weight',''),(3022,264,'_length',''),(3023,264,'_width',''),(3024,264,'_height',''),(3025,264,'_sku',''),(3026,264,'_product_attributes','a:0:{}'),(3027,264,'_regular_price',''),(3028,264,'_sale_price',''),(3029,264,'_sale_price_dates_from',''),(3030,264,'_sale_price_dates_to',''),(3031,264,'_price',''),(3032,264,'_sold_individually',''),(3033,264,'_manage_stock','no'),(3034,264,'_backorders','no'),(3035,264,'_stock',''),(3036,264,'_upsell_ids','a:0:{}'),(3037,264,'_crosssell_ids','a:0:{}'),(3038,264,'_product_version','2.5.5'),(3039,264,'_product_image_gallery',''),(3042,266,'_edit_last','1'),(3043,266,'_edit_lock','1495794441:1'),(3044,267,'_wp_attached_file','2017/05/FISH-FEED.jpg'),(3045,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2017/05/FISH-FEED.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"FISH-FEED-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"FISH-FEED-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:21:\"FISH-FEED-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3046,266,'_thumbnail_id','267'),(3047,266,'_visibility','visible'),(3048,266,'_stock_status','instock'),(3076,266,'_aioseop_title','Sinking Fish Feed'),(3050,266,'total_sales','0'),(3051,266,'_downloadable','no'),(3052,266,'_virtual','no'),(3053,266,'_purchase_note',''),(3054,266,'_featured','no'),(3055,266,'_weight',''),(3056,266,'_length',''),(3057,266,'_width',''),(3058,266,'_height',''),(3059,266,'_sku',''),(3060,266,'_product_attributes','a:0:{}'),(3061,266,'_regular_price',''),(3062,266,'_sale_price',''),(3063,266,'_sale_price_dates_from',''),(3064,266,'_sale_price_dates_to',''),(3065,266,'_price',''),(3066,266,'_sold_individually',''),(3067,266,'_manage_stock','no'),(3068,266,'_backorders','no'),(3069,266,'_stock',''),(3070,266,'_upsell_ids','a:0:{}'),(3071,266,'_crosssell_ids','a:0:{}'),(3072,266,'_product_version','2.5.5'),(3073,266,'_product_image_gallery',''),(3077,266,'_wc_review_count','0'),(3078,268,'_wp_attached_file','2017/05/FISH-Pic-2.png'),(3079,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:52;s:4:\"file\";s:22:\"2017/05/FISH-Pic-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3080,264,'_wc_review_count','0'),(3081,161,'_wc_review_count','0'),(3082,159,'_wc_review_count','0'),(3085,274,'_wp_attached_file','2017/11/Manomay-Biochem-watermark.jpg'),(3086,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:52;s:6:\"height\";i:42;s:4:\"file\";s:37:\"2017/11/Manomay-Biochem-watermark.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:2:\"??\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1465040402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3087,259,'iw-is-watermarked','1'),(3088,257,'iw-is-watermarked','1'),(3089,255,'iw-is-watermarked','1'),(3090,253,'iw-is-watermarked','1'),(3091,251,'iw-is-watermarked','1'),(3092,248,'iw-is-watermarked','1'),(3093,246,'iw-is-watermarked','1'),(3094,244,'iw-is-watermarked','1'),(3095,243,'iw-is-watermarked','1'),(3096,241,'iw-is-watermarked','1'),(3097,239,'iw-is-watermarked','1'),(3098,237,'iw-is-watermarked','1'),(3099,235,'iw-is-watermarked','1'),(3100,233,'iw-is-watermarked','1'),(3101,275,'_wp_attached_file','2017/11/Manomay-Biochem-1.jpg'),(3102,275,'iw-is-watermarked','1'),(3103,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:50;s:4:\"file\";s:29:\"2017/11/Manomay-Biochem-1.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Manomay-Biochem-1-300x50.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Manomay-Biochem-1-100x50.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Manomay-Biochem-1-150x50.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Manomay-Biochem-1-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Manomay-Biochem-1-100x50.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Manomay-Biochem-1-300x50.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Manomay-Biochem-1-250x50.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:28:\"Manomay-Biochem-1-285x50.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Manomay-Biochem-1-174x50.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:2:\"??\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1465040402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3104,276,'_wp_attached_file','2017/11/Manomay-Biochem.jpg'),(3105,276,'iw-is-watermarked','1'),(3106,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:67;s:6:\"height\";i:93;s:4:\"file\";s:27:\"2017/11/Manomay-Biochem.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:2:\"??\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1465040402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3107,277,'_wp_attached_file','2017/11/Manomay-Biochem-3.jpg'),(3108,277,'iw-is-watermarked','1'),(3109,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:350;s:4:\"file\";s:29:\"2017/11/Manomay-Biochem-3.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Manomay-Biochem-3-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"Manomay-Biochem-3-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-256x200.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-256x214.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Manomay-Biochem-3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:2:\"??\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1465040402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3110,265,'iw-is-watermarked','1'),(3111,262,'iw-is-watermarked','1'),(3112,261,'iw-is-watermarked','1'),(3113,228,'iw-is-watermarked','1'),(3114,227,'iw-is-watermarked','1'),(3115,226,'iw-is-watermarked','1'),(3116,225,'iw-is-watermarked','1'),(3117,224,'iw-is-watermarked','1'),(3118,223,'iw-is-watermarked','1'),(3119,222,'iw-is-watermarked','1'),(3120,221,'iw-is-watermarked','1'),(3121,219,'iw-is-watermarked','1'),(3122,218,'iw-is-watermarked','1'),(3123,215,'iw-is-watermarked','1'),(3124,212,'iw-is-watermarked','1'),(3125,209,'iw-is-watermarked','1'),(3126,207,'iw-is-watermarked','1'),(3127,205,'iw-is-watermarked','1'),(3128,203,'iw-is-watermarked','1'),(3129,201,'iw-is-watermarked','1'),(3130,199,'iw-is-watermarked','1'),(3131,197,'iw-is-watermarked','1'),(3132,195,'iw-is-watermarked','1'),(3133,193,'iw-is-watermarked','1'),(3134,191,'iw-is-watermarked','1'),(3135,189,'iw-is-watermarked','1'),(3136,187,'iw-is-watermarked','1'),(3137,185,'iw-is-watermarked','1'),(3138,182,'iw-is-watermarked','1'),(3139,180,'iw-is-watermarked','1'),(3140,178,'iw-is-watermarked','1'),(3141,176,'iw-is-watermarked','1'),(3142,172,'iw-is-watermarked','1'),(3143,170,'iw-is-watermarked','1'),(3144,166,'iw-is-watermarked','1'),(3145,164,'iw-is-watermarked','1'),(3146,162,'iw-is-watermarked','1'),(3147,160,'iw-is-watermarked','1'),(3148,158,'iw-is-watermarked','1'),(3149,156,'iw-is-watermarked','1'),(3150,154,'iw-is-watermarked','1'),(3151,152,'iw-is-watermarked','1'),(3152,150,'iw-is-watermarked','1'),(3153,148,'iw-is-watermarked','1'),(3154,146,'iw-is-watermarked','1'),(3155,143,'iw-is-watermarked','1'),(3156,140,'iw-is-watermarked','1'),(3157,137,'iw-is-watermarked','1'),(3158,135,'iw-is-watermarked','1'),(3159,132,'iw-is-watermarked','1'),(3160,129,'iw-is-watermarked','1'),(3161,120,'iw-is-watermarked','1'),(3162,119,'iw-is-watermarked','1'),(3163,116,'iw-is-watermarked','1'),(3164,115,'iw-is-watermarked','1'),(3165,113,'iw-is-watermarked','1'),(3166,112,'iw-is-watermarked','1'),(3167,110,'iw-is-watermarked','1'),(3168,109,'iw-is-watermarked','1'),(3169,104,'iw-is-watermarked','1'),(3170,97,'iw-is-watermarked','1'),(3171,96,'iw-is-watermarked','1'),(3172,95,'iw-is-watermarked','1'),(3173,92,'iw-is-watermarked','1'),(3174,91,'iw-is-watermarked','1'),(3175,90,'iw-is-watermarked','1'),(3176,89,'iw-is-watermarked','1'),(3177,88,'iw-is-watermarked','1'),(3178,87,'iw-is-watermarked','1'),(3179,86,'iw-is-watermarked','1'),(3180,85,'iw-is-watermarked','1'),(3181,84,'iw-is-watermarked','1'),(3182,83,'iw-is-watermarked','1'),(3183,82,'iw-is-watermarked','1'),(3184,81,'iw-is-watermarked','1'),(3185,80,'iw-is-watermarked','1'),(3186,79,'iw-is-watermarked','1'),(3187,78,'iw-is-watermarked','1'),(3188,77,'iw-is-watermarked','1'),(3189,76,'iw-is-watermarked','1'),(3190,74,'iw-is-watermarked','1'),(3191,73,'iw-is-watermarked','1'),(3192,72,'iw-is-watermarked','1'),(3193,71,'iw-is-watermarked','1'),(3194,70,'iw-is-watermarked','1'),(3195,69,'iw-is-watermarked','1'),(3196,68,'iw-is-watermarked','1'),(3197,67,'iw-is-watermarked','1'),(3198,66,'iw-is-watermarked','1'),(3199,65,'iw-is-watermarked','1'),(3200,64,'iw-is-watermarked','1'),(3201,63,'iw-is-watermarked','1'),(3202,62,'iw-is-watermarked','1'),(3203,61,'iw-is-watermarked','1'),(3204,60,'iw-is-watermarked','1'),(3205,59,'iw-is-watermarked','1'),(3206,58,'iw-is-watermarked','1'),(3207,57,'iw-is-watermarked','1'),(3208,56,'iw-is-watermarked','1'),(3209,55,'iw-is-watermarked','1'),(3210,54,'iw-is-watermarked','1'),(3211,53,'iw-is-watermarked','1'),(3212,52,'iw-is-watermarked','1'),(3213,51,'iw-is-watermarked','1'),(3214,50,'iw-is-watermarked','1'),(3215,49,'iw-is-watermarked','1'),(3216,34,'iw-is-watermarked','1'),(3217,264,'_wc_rating_count','a:0:{}'),(3218,264,'_wc_average_rating','0'),(3219,198,'_wc_rating_count','a:0:{}'),(3220,198,'_wc_average_rating','0'),(3221,216,'_wc_rating_count','a:0:{}'),(3222,216,'_wc_average_rating','0'),(3223,125,'_wc_rating_count','a:0:{}'),(3224,125,'_wc_average_rating','0'),(3225,177,'_wc_rating_count','a:0:{}'),(3226,177,'_wc_average_rating','0'),(3227,123,'_wc_rating_count','a:0:{}'),(3228,123,'_wc_average_rating','0'),(3229,118,'_wc_rating_count','a:0:{}'),(3230,118,'_wc_average_rating','0'),(3231,232,'_wc_rating_count','a:0:{}'),(3232,232,'_wc_average_rating','0'),(3233,234,'_wc_rating_count','a:0:{}'),(3234,234,'_wc_average_rating','0'),(3235,126,'_wc_rating_count','a:0:{}'),(3236,126,'_wc_average_rating','0'),(3237,127,'_wc_rating_count','a:0:{}'),(3238,127,'_wc_average_rating','0'),(3239,128,'_wc_rating_count','a:0:{}'),(3240,128,'_wc_average_rating','0'),(3241,130,'_wc_rating_count','a:0:{}'),(3242,130,'_wc_average_rating','0'),(3243,236,'_wc_rating_count','a:0:{}'),(3244,236,'_wc_average_rating','0'),(3245,131,'_wc_rating_count','a:0:{}'),(3246,131,'_wc_average_rating','0'),(3247,133,'_wc_rating_count','a:0:{}'),(3248,133,'_wc_average_rating','0'),(3249,134,'_wc_rating_count','a:0:{}'),(3250,134,'_wc_average_rating','0'),(3251,136,'_wc_rating_count','a:0:{}'),(3252,136,'_wc_average_rating','0'),(3253,139,'_wc_rating_count','a:0:{}'),(3254,139,'_wc_average_rating','0'),(3255,141,'_wc_rating_count','a:0:{}'),(3256,141,'_wc_average_rating','0'),(3257,144,'_wc_rating_count','a:0:{}'),(3258,144,'_wc_average_rating','0'),(3259,238,'_wc_rating_count','a:0:{}'),(3260,238,'_wc_average_rating','0'),(3261,240,'_wc_rating_count','a:0:{}'),(3262,240,'_wc_average_rating','0'),(3263,145,'_wc_rating_count','a:0:{}'),(3264,145,'_wc_average_rating','0'),(3265,147,'_wc_rating_count','a:0:{}'),(3266,147,'_wc_average_rating','0'),(3267,242,'_wc_rating_count','a:0:{}'),(3268,242,'_wc_average_rating','0'),(3269,149,'_wc_rating_count','a:0:{}'),(3270,149,'_wc_average_rating','0'),(3271,151,'_wc_rating_count','a:0:{}'),(3272,151,'_wc_average_rating','0'),(3273,266,'_wc_rating_count','a:0:{}'),(3274,266,'_wc_average_rating','0'),(3275,173,'_wc_rating_count','a:0:{}'),(3276,173,'_wc_average_rating','0'),(3277,183,'_wc_rating_count','a:0:{}'),(3278,183,'_wc_average_rating','0'),(3279,254,'_wc_rating_count','a:0:{}'),(3280,254,'_wc_average_rating','0'),(3281,192,'_wc_rating_count','a:0:{}'),(3282,192,'_wc_average_rating','0'),(3283,194,'_wc_rating_count','a:0:{}'),(3284,194,'_wc_average_rating','0'),(3285,114,'_wc_rating_count','a:0:{}'),(3286,114,'_wc_average_rating','0'),(3287,196,'_wc_rating_count','a:0:{}'),(3288,196,'_wc_average_rating','0'),(3289,256,'_wc_rating_count','a:0:{}'),(3290,256,'_wc_average_rating','0'),(3291,258,'_wc_rating_count','a:0:{}'),(3292,258,'_wc_average_rating','0'),(3293,200,'_wc_rating_count','a:0:{}'),(3294,200,'_wc_average_rating','0'),(3295,202,'_wc_rating_count','a:0:{}'),(3296,202,'_wc_average_rating','0'),(3297,204,'_wc_rating_count','a:0:{}'),(3298,204,'_wc_average_rating','0'),(3299,206,'_wc_rating_count','a:0:{}'),(3300,206,'_wc_average_rating','0'),(3301,208,'_wc_rating_count','a:0:{}'),(3302,208,'_wc_average_rating','0'),(3303,211,'_wc_rating_count','a:0:{}'),(3304,211,'_wc_average_rating','0'),(3305,214,'_wc_rating_count','a:0:{}'),(3306,214,'_wc_average_rating','0'),(3307,106,'_wc_rating_count','a:0:{}'),(3308,106,'_wc_average_rating','0'),(3309,220,'_wc_rating_count','a:0:{}'),(3310,220,'_wc_average_rating','0'),(3311,252,'_wc_rating_count','a:0:{}'),(3312,252,'_wc_average_rating','0'),(3313,250,'_wc_rating_count','a:0:{}'),(3314,250,'_wc_average_rating','0'),(3315,249,'_wc_rating_count','a:0:{}'),(3316,249,'_wc_average_rating','0'),(3317,247,'_wc_rating_count','a:0:{}'),(3318,247,'_wc_average_rating','0'),(3319,245,'_wc_rating_count','a:0:{}'),(3320,245,'_wc_average_rating','0'),(3321,188,'_wc_rating_count','a:0:{}'),(3322,188,'_wc_average_rating','0'),(3323,186,'_wc_rating_count','a:0:{}'),(3324,186,'_wc_average_rating','0'),(3325,184,'_wc_rating_count','a:0:{}'),(3326,184,'_wc_average_rating','0'),(3327,153,'_wc_rating_count','a:0:{}'),(3328,153,'_wc_average_rating','0'),(3329,155,'_wc_rating_count','a:0:{}'),(3330,155,'_wc_average_rating','0'),(3331,157,'_wc_rating_count','a:0:{}'),(3332,157,'_wc_average_rating','0'),(3333,108,'_wc_rating_count','a:0:{}'),(3334,108,'_wc_average_rating','0'),(3335,159,'_wc_rating_count','a:0:{}'),(3336,159,'_wc_average_rating','0'),(3337,161,'_wc_rating_count','a:0:{}'),(3338,161,'_wc_average_rating','0'),(3339,163,'_wc_rating_count','a:0:{}'),(3340,163,'_wc_average_rating','0'),(3341,165,'_wc_rating_count','a:0:{}'),(3342,165,'_wc_average_rating','0'),(3343,111,'_wc_rating_count','a:0:{}'),(3344,111,'_wc_average_rating','0'),(3345,167,'_wc_rating_count','a:0:{}'),(3346,167,'_wc_average_rating','0'),(3347,171,'_wc_rating_count','a:0:{}'),(3348,171,'_wc_average_rating','0'),(3349,174,'_wc_rating_count','a:0:{}'),(3350,174,'_wc_average_rating','0'),(3351,175,'_wc_rating_count','a:0:{}'),(3352,175,'_wc_average_rating','0'),(3353,179,'_wc_rating_count','a:0:{}'),(3354,179,'_wc_average_rating','0'),(3355,181,'_wc_rating_count','a:0:{}'),(3356,181,'_wc_average_rating','0'),(3365,284,'_edit_last','1'),(3362,284,'_wc_review_count','0'),(3363,284,'_wc_rating_count','a:0:{}'),(3364,284,'_wc_average_rating','0'),(3366,284,'_edit_lock','1539429515:1'),(3367,285,'_wp_attached_file','2018/10/MB-24D.jpg'),(3368,285,'iw-is-watermarked','1'),(3369,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2018/10/MB-24D.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"MB-24D-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"MB-24D-263x300.jpg\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"MB-24D-768x878.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"MB-24D-896x1024.jpg\";s:5:\"width\";i:896;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"MB-24D-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:18:\"MB-24D-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:18:\"MB-24D-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:18:\"MB-24D-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:18:\"MB-24D-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:18:\"MB-24D-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"MB-24D-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"MB-24D-600x686.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"MB-24D-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"MB-24D-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"MB-24D-600x686.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"MB-24D-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3370,284,'_thumbnail_id','289'),(3371,284,'_sku',''),(3372,284,'_regular_price',''),(3373,284,'_sale_price',''),(3374,284,'_sale_price_dates_from',''),(3375,284,'_sale_price_dates_to',''),(3376,284,'total_sales','0'),(3377,284,'_tax_status','taxable'),(3378,284,'_tax_class',''),(3379,284,'_manage_stock','no'),(3380,284,'_backorders','no'),(3381,284,'_sold_individually','no'),(3382,284,'_weight',''),(3383,284,'_length',''),(3384,284,'_width',''),(3385,284,'_height',''),(3386,284,'_upsell_ids','a:0:{}'),(3387,284,'_crosssell_ids','a:0:{}'),(3388,284,'_purchase_note',''),(3389,284,'_default_attributes','a:0:{}'),(3390,284,'_virtual','no'),(3391,284,'_downloadable','no'),(3392,284,'_product_image_gallery',''),(3393,284,'_download_limit','-1'),(3394,284,'_download_expiry','-1'),(3395,284,'_stock',NULL),(3396,284,'_stock_status','instock'),(3397,284,'_product_version','3.4.3'),(3398,284,'_price',''),(3399,286,'_wc_review_count','0'),(3400,286,'_wc_rating_count','a:0:{}'),(3401,286,'_wc_average_rating','0'),(3402,287,'_wp_attached_file','2018/10/Glyphom.jpg'),(3403,287,'iw-is-watermarked','1'),(3404,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:1584;s:4:\"file\";s:19:\"2018/10/Glyphom.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Glyphom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Glyphom-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Glyphom-768x1267.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Glyphom-621x1024.jpg\";s:5:\"width\";i:621;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"Glyphom-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:19:\"Glyphom-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:19:\"Glyphom-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:19:\"Glyphom-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:19:\"Glyphom-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:19:\"Glyphom-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Glyphom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Glyphom-600x990.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:990;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Glyphom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"Glyphom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"Glyphom-600x990.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:990;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Glyphom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3405,286,'_edit_last','1'),(3406,286,'_thumbnail_id','288'),(3407,286,'_sku',''),(3408,286,'_regular_price',''),(3409,286,'_sale_price',''),(3410,286,'_sale_price_dates_from',''),(3411,286,'_sale_price_dates_to',''),(3412,286,'total_sales','0'),(3413,286,'_tax_status','taxable'),(3414,286,'_tax_class',''),(3415,286,'_manage_stock','no'),(3416,286,'_backorders','no'),(3417,286,'_sold_individually','no'),(3418,286,'_weight',''),(3419,286,'_length',''),(3420,286,'_width',''),(3421,286,'_height',''),(3422,286,'_upsell_ids','a:0:{}'),(3423,286,'_crosssell_ids','a:0:{}'),(3424,286,'_purchase_note',''),(3425,286,'_default_attributes','a:0:{}'),(3426,286,'_virtual','no'),(3427,286,'_downloadable','no'),(3428,286,'_product_image_gallery',''),(3429,286,'_download_limit','-1'),(3430,286,'_download_expiry','-1'),(3431,286,'_stock',NULL),(3432,286,'_stock_status','instock'),(3433,286,'_product_version','3.4.3'),(3434,286,'_price',''),(3435,286,'_edit_lock','1539429521:1'),(3436,288,'_wp_attached_file','2018/10/Glyphom1.jpg'),(3437,288,'iw-is-watermarked','1'),(3438,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:238;s:4:\"file\";s:20:\"2018/10/Glyphom1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Glyphom1-144x150.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:20:\"Glyphom1-144x200.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:20:\"Glyphom1-144x214.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:20:\"Glyphom1-144x174.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Glyphom1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Glyphom1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3439,289,'_wp_attached_file','2018/10/MB-24D1.jpg'),(3440,289,'iw-is-watermarked','1'),(3441,289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:240;s:4:\"file\";s:19:\"2018/10/MB-24D1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MB-24D1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:19:\"MB-24D1-210x200.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:19:\"MB-24D1-210x214.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:19:\"MB-24D1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"MB-24D1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"MB-24D1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3442,291,'_wp_attached_file','2019/09/Papain-Powder.jpg'),(3443,291,'iw-is-watermarked','1'),(3444,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:337;s:4:\"file\";s:25:\"2019/09/Papain-Powder.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Papain-Powder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Powder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:27:\"Xanthan gum in a small bowl\";s:17:\"created_timestamp\";s:10:\"1447256541\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:9:\"502190656\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3445,292,'_wp_attached_file','2019/09/Papain-Liquid.jpg'),(3446,292,'iw-is-watermarked','1'),(3447,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2019/09/Papain-Liquid.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Papain-Liquid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Papain-Liquid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3448,293,'_wc_review_count','0'),(3449,293,'_wc_rating_count','a:0:{}'),(3450,293,'_wc_average_rating','0'),(3451,293,'_edit_last','1'),(3452,293,'_edit_lock','1569849571:1'),(3453,294,'_wp_attached_file','2019/09/Papain-Liquid-1.jpg'),(3454,294,'iw-is-watermarked','1'),(3455,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2019/09/Papain-Liquid-1.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Papain-Liquid-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Liquid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3456,295,'_wp_attached_file','2019/09/Papain-Powder-1.jpg'),(3457,295,'iw-is-watermarked','1'),(3458,295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:337;s:4:\"file\";s:27:\"2019/09/Papain-Powder-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Papain-Powder-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Papain-Powder-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:27:\"Xanthan gum in a small bowl\";s:17:\"created_timestamp\";s:10:\"1447256541\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:9:\"502190656\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3459,293,'_thumbnail_id','294'),(3460,293,'_sku',''),(3461,293,'_regular_price',''),(3462,293,'_sale_price',''),(3463,293,'_sale_price_dates_from',''),(3464,293,'_sale_price_dates_to',''),(3465,293,'total_sales','0'),(3466,293,'_tax_status','taxable'),(3467,293,'_tax_class',''),(3468,293,'_manage_stock','no'),(3469,293,'_backorders','no'),(3470,293,'_sold_individually','no'),(3471,293,'_weight',''),(3472,293,'_length',''),(3473,293,'_width',''),(3474,293,'_height',''),(3475,293,'_upsell_ids','a:0:{}'),(3476,293,'_crosssell_ids','a:0:{}'),(3477,293,'_purchase_note',''),(3478,293,'_default_attributes','a:0:{}'),(3479,293,'_virtual','no'),(3480,293,'_downloadable','no'),(3481,293,'_product_image_gallery',''),(3482,293,'_download_limit','-1'),(3483,293,'_download_expiry','-1'),(3484,293,'_stock',NULL),(3485,293,'_stock_status','instock'),(3486,293,'_product_version','3.4.3'),(3487,293,'_price',''),(3488,296,'_wc_review_count','0'),(3489,296,'_wc_rating_count','a:0:{}'),(3490,296,'_wc_average_rating','0'),(3491,296,'_edit_last','1'),(3492,296,'_edit_lock','1569849970:1'),(3493,296,'_thumbnail_id','295'),(3494,296,'_sku',''),(3495,296,'_regular_price',''),(3496,296,'_sale_price',''),(3497,296,'_sale_price_dates_from',''),(3498,296,'_sale_price_dates_to',''),(3499,296,'total_sales','0'),(3500,296,'_tax_status','taxable'),(3501,296,'_tax_class',''),(3502,296,'_manage_stock','no'),(3503,296,'_backorders','no'),(3504,296,'_sold_individually','no'),(3505,296,'_weight',''),(3506,296,'_length',''),(3507,296,'_width',''),(3508,296,'_height',''),(3509,296,'_upsell_ids','a:0:{}'),(3510,296,'_crosssell_ids','a:0:{}'),(3511,296,'_purchase_note',''),(3512,296,'_default_attributes','a:0:{}'),(3513,296,'_virtual','no'),(3514,296,'_downloadable','no'),(3515,296,'_product_image_gallery',''),(3516,296,'_download_limit','-1'),(3517,296,'_download_expiry','-1'),(3518,296,'_stock',NULL),(3519,296,'_stock_status','instock'),(3520,296,'_product_version','3.4.3'),(3521,296,'_price','');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=297 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2016-06-04 16:16:47','2016-06-04 16:16:47','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2016-06-04 16:16:47','2016-06-04 16:16:47','',0,'http://manomaybiochem.com/?p=1',0,'post','',1),(2,1,'2016-06-04 16:16:47','2016-06-04 16:16:47','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://manomaybiochem.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2016-06-04 16:16:47','2016-06-04 16:16:47','',0,'http://manomaybiochem.com/?page_id=2',0,'page','',0),(6,1,'2016-06-04 18:01:37','2016-06-04 18:01:37','','Shop','','publish','closed','closed','','shop','','','2016-06-04 18:01:37','2016-06-04 18:01:37','',0,'http://manomaybiochem.com/shop/',0,'page','',0),(7,1,'2016-06-04 18:01:37','2016-06-04 18:01:37','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2016-06-04 18:01:37','2016-06-04 18:01:37','',0,'http://manomaybiochem.com/cart/',0,'page','',0),(8,1,'2016-06-04 18:01:37','2016-06-04 18:01:37','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout','','','2016-06-04 18:01:37','2016-06-04 18:01:37','',0,'http://manomaybiochem.com/checkout/',0,'page','',0),(9,1,'2016-06-04 18:01:37','2016-06-04 18:01:37','[woocommerce_my_account]','My Account','','publish','closed','closed','','my-account','','','2016-06-04 18:01:37','2016-06-04 18:01:37','',0,'http://manomaybiochem.com/my-account/',0,'page','',0),(10,1,'2016-06-04 18:05:32','2016-06-04 18:05:32','When a yeast cell is inactivated, a natural digestion process called “autolysis” starts. During this process the yeast’s own enzymes break down proteins and other parts of the cell. This causes the release of peptides, amino acids [glutamic acid - MSG*], vitamins and other yeast cell components which, once the insoluble components have been removed, is called “Yeast Extract.\r\n\r\nYeast bacteriological use and cell cultures, and is an excellent stimulator of bacterial growth. Yeast Extract is generally employed in the concentration of 0.3% -0.5%. Yeast Extract is typically prepared by growing baker’s yeast, Saccharomyces spp., in a carbohydrate-rich plant medium. Yeast Extract is the total soluble portion activity is stopped by a heating step. The resulting Yeast Extract is filtered clear and dried into a powder by spray drying. Yeast Extract has been successful in culture media for bacterial studies in milk and other dairy products. 1-5 Several media containing Yeast Extract have been recommended for cell culture applications.\r\n\r\nby spray drying. Yeast Extract has been successful in culture media for bacterial studies in milk and other.','Yeast Extract Powder','The Two Main Application of Yeast Extract\r\n<ul>\r\n	<li><strong>Natural aromatic ingredient for savoury foods</strong> Yeast Extracts are increasingly used for their unique taste, which is the result of amino acids and small peptides formed out of the yeast protein by the autolysis process. They constitute a natural flavour ingredient, imparting delicate bouillon, meaty or cheesy notes and enhancing the flavour for a wide range of food products: soups, sauces, meat and fish preparations, savoury mixes, etc.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong>Source of nitrogen &amp; growth factors for culture media:</strong> Yeast Extracts are rich in nitrogen, vitamins and other growth stimulating compounds and therefore are used as an ingredient in media for the cultivation of microorganisms. These organisms are for example used in the production of antibiotics, biopharmaceuticals, vitamins, organic acids, dairy cultures, probiotics etc</li>\r\n</ul>','publish','open','closed','','yeast-extract-powder','','','2016-09-23 02:56:18','2016-09-23 02:56:18','',0,'http://manomaybiochem.com/?post_type=product&#038;p=10',0,'product','',0),(18,1,'2016-06-06 16:41:29','2016-06-06 16:41:29','Peptones are an enzymatic digest of protein used to cultivate non-fastidious microorganisms. Peptones are derived from meat digested by proteolytic digestion. In addition to peptides, the resulting spray dried material also contains fats, metals, salts, vitamins and many other biological compounds. Peptones are produced from porcine and / or bovine tissues. Thetissues are digested enzymically to create small peptides and then spray dried.\r\n\r\n<strong>TYPES OF PEPTONES:</strong>\r\n<ul>\r\n	<li><strong>Peptone Powder</strong>: This is a high quality hydrolysate produced by enzymatic digestion of animal tissues. It is widely used in culture media &amp; has been used extensively in the manufacture of toxins, vaccines &amp; other biological products.</li>\r\n</ul>\r\n<strong>Soya Peptone:</strong> Soya Peptone GMO-Free, Animal-Free is a specially designed product, Soy peptone is a papaic digest of defatted soybean meal. It is used in culture media for the cultivation of a wide variety of microorganisms including bacteria and fungi. It is an excellent source of vitamins and carbohydrates. The raw material to produce this soy peptone is guaranteed to be GMO-Free and Animal-Free (eliminates TSE/BSE issues). It is recommended for use in microbiological, tissue culture and fermentation media.\r\n\r\n<strong>INDUSTRIAL APPLICATION </strong>\r\n<ul>\r\n	<li>Peptones are used in Microbiological culture media to support the nutritional requirements of microorganisms.</li>\r\n	<li>Industrial fermentations and the production of human and veterinary vaccines.</li>\r\n	<li>Peptones are used in nutrient media for growing bacteria and fungi. Peptones are also used for detection of microorganisms.</li>\r\n</ul>\r\nPeptones are used in Diagnostics, Fermentation and Cell Culture Industries','Peptone Powder','Peptones are an enzymatic digest of protein used to cultivate non-fastidious microorganisms. Peptones are derived from meat digested by proteolytic digestion. In addition to peptides, the resulting spray dried material also contains fats, metals, salts, vitamins and many other biological compounds. Peptones are produced from porcine and / or bovine tissues. Thetissues are digested enzymically to create small peptides and then spray dried.','publish','open','closed','','peptone-powder','','','2017-01-30 00:09:35','2017-01-30 00:09:35','',0,'http://manomaybiochem.com/?post_type=product&#038;p=18',0,'product','',0),(11,1,'2016-06-04 18:07:34','2016-06-04 18:07:34','','Home','','publish','closed','closed','','home','','','2016-06-04 18:10:51','2016-06-04 18:10:51','',0,'http://manomaybiochem.com/?p=11',1,'nav_menu_item','',0),(16,1,'2016-06-04 18:07:34','2016-06-04 18:07:34','','Our Products','','publish','closed','closed','','16','','','2016-06-07 17:42:20','2016-06-07 17:42:20','',0,'http://manomaybiochem.com/?p=16',4,'nav_menu_item','',0),(43,1,'2016-06-07 17:36:41','2016-06-07 17:36:41','','About Us','','publish','closed','closed','','about-us','','','2016-06-07 17:36:41','2016-06-07 17:36:41','',0,'http://manomaybiochem.com/2016/06/07/about-us/',2,'nav_menu_item','',0),(17,1,'2016-09-23 02:53:43','2016-09-23 02:53:43','When a yeast cell is inactivated, a natural digestion process called “autolysis” starts. During this process the yeast’s own enzymes break down proteins and other parts of the cell. This causes the release of peptides, amino acids [glutamic acid - MSG*], vitamins and other yeast cell components which, once the insoluble components have been removed, is called “Yeast Extract.\n\nYeast bacteriological use and cell cultures, and is an excellent stimulator of bacterial growth. Yeast Extract is generally employed in the concentration of 0.3% -0.5%. Yeast Extract is typically prepared by growing baker’s yeast, Saccharomyces spp., in a carbohydrate-rich plant medium. Yeast Extract is the total soluble portion activity is stopped by a heating step. The resulting Yeast Extract is filtered clear and dried into a powder by spray drying. Yeast Extract has been successful in culture media for bacterial studies in milk and other dairy products. 1-5 Several media containing Yeast Extract have been recommended for cell culture applications.\n\nby spray drying. Yeast Extract has been successful in culture media for bacterial studies in milk and other.','Yeast Extract Powder','Yeast Extracts are concentrates of the water soluble portion of Saccharomyces cerevisiae cells that have been autolyzed. Yeast extracts are derived from primary grown baker’s yeast. It is an animal-free product and is used extensively for many animal-free formulations for bacterial, fungal, mammalian and insect cell culture. Our product will provide essential water soluble vitamins, amino acids, peptides and carbohydrates to any medium formulation.\nAlso suitable for use as multi-functional nutritional supplements in cell culture, microbial fermentation and\ninsect cell culture applications.','inherit','closed','closed','','10-autosave-v1','','','2016-09-23 02:53:43','2016-09-23 02:53:43','',10,'http://manomaybiochem.com/2016/06/06/10-autosave-v1/',0,'revision','',0),(19,1,'2016-06-06 16:50:52','2016-06-06 16:50:52','It is a dehydrated extract of bovine tissue. Beef Extract Powder is prepared and standardized for use in microbiological culture media, where it is generally used to replace infusion of meat.\r\n\r\n<strong>INDUSTRIAL APPLICATION </strong>\r\n<ul>\r\n	<li>Culture media containing Beef Extract Powder are recommended for use in bacteriological examination of water, milk, and other materials, where uniform composition of media is important.</li>\r\n	<li>It is relied upon for biochemical studies, particularly fermentation reactions because of its independence from ferment-able substances.</li>\r\n</ul>\r\n<strong>STORAGE</strong>\r\n\r\nStore sealed bottle / bag containing Beef Extract Powder at 2 - 30°C. Once opened and recapped, place container in a low humidity environment at the same storage temperature. Protect from moisture and light by keeping container tightly closed.','Beef Extract Powder','It is a dehydrated extract of bovine tissue. Beef Extract Powder is prepared and standardized for use in microbiological culture media, where it is generally used to replace infusion of meat.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','publish','open','closed','','beef-extract-powder','','','2016-09-23 02:31:42','2016-09-23 02:31:42','',0,'http://manomaybiochem.com/?post_type=product&#038;p=19',0,'product','',0),(102,1,'2016-09-23 02:33:46','2016-09-23 02:33:46','We offer clients high quality Malt Extract Powder. Pranger MTX is the product of germination of barley grains. These barley products are hygienically processed by using various sophisticated machines in our hygienically maintained processing unit.\n\n&nbsp;','Malt Extract','We offer clients high quality Malt Extract Powder. Pranger MTX is the product of germination of barley grains. These barley products are hygienically processed by using various sophisticated machines in our hygienically maintained processing unit.\n\n<strong>INDUSTRIAL APPLICATION OF <em>Pranger MTX</em></strong>\n<ul type=\"1\">\n	<li><strong>Malted Milk Foods:</strong> Malt &amp; Malt extract are essential ingredients for the manufacture of nutritious foods having high value of vitamins, proteins.</li>\n	<li><strong>Breweries:</strong> Malt is used in beer manufacturing and it is about 85% of the total material used in brewering.</li>\n	<li><strong>Distilleries:</strong> Malt has got its use in distillery industry and this incorporated it at a level of 10 to 15% of total starch beering materials.</li>\n	<li><strong>Bakery &amp; Confectionaries:</strong> Malt extract syrup which is as product made out of malt, finds use in number of food, pharmaceuticals, bakery and biscuit manufacturing industries.</li>\n	<li>Malt extract powder is the new R&amp;D development and can be used easily for almost all applications of malt.</li>\n</ul>\n&nbsp;\n\n&nbsp;','inherit','closed','closed','','20-autosave-v1','','','2016-09-23 02:33:46','2016-09-23 02:33:46','',20,'http://manomaybiochem.com/20-autosave-v1/',0,'revision','',0),(20,1,'2016-06-06 17:00:57','2016-06-06 17:00:57','We offer clients high quality Malt Extract Powder.It is the product of germination of barley grains. These barley products are hygienically processed by using various sophisticated machines in our hygienically maintained processing unit.\r\n\r\n<strong>MANUFACTURING STEPS </strong>\r\n<ul>\r\n	<li>Spirulinaalgaes is Cultured</li>\r\n	<li>Harvested</li>\r\n	<li>Filtration and Cleaning</li>\r\n	<li>Pre-concentration</li>\r\n	<li>Concentration</li>\r\n	<li>Neutralization</li>\r\n	<li>Disintegration</li>\r\n	<li>Dehydration</li>\r\n	<li>Packing</li>\r\n	<li>Storage</li>\r\n	<li>Quality control.</li>\r\n</ul>\r\n<strong>INDUSTRIAL APPLICATION </strong>\r\n<ol>\r\n	<li><strong><u>Malted Milk Foods:</u></strong>Malt &amp; Malt extract are essential ingredients for the manufacture of nutritious foods having high value of vitamins, proteins.</li>\r\n	<li><strong><u>Breweries:</u></strong> Malt is used in beer manufacturing and it is about 85% of the total material used in brewering.</li>\r\n	<li><strong><u>Distilleries:</u></strong> Malt has got its use in distillery industry and this incorporated it at a level of 10 to 15% of total starch beering materials.</li>\r\n	<li><strong><u>Bakery &amp; Confectionaries:</u></strong> Malt extract syrup which is as product made out of malt, finds use in number of food, pharmaceuticals, bakery and biscuit manufacturing industries.</li>\r\n	<li>Malt extract powder is the new R&amp;D development and can be used easily for almost all applications of malt.</li>\r\n</ol>','Malt Extract','We offer clients high quality Malt Extract Powder.It is the product of germination of barley grains. These barley products are hygienically processed by using various sophisticated machines in our hygienically maintained processing unit.','publish','open','closed','','malt-extract','','','2017-01-29 10:46:31','2017-01-29 10:46:31','',0,'http://manomaybiochem.com/?post_type=product&#038;p=20',0,'product','',0),(21,1,'2016-06-06 17:02:48','2016-06-06 17:02:48','The company is a reliableImporter and Supplierof <strong>Folic Acid</strong>. The Folic Acid we make available is used in various chemical and pharmaceutical industries.\r\n\r\nOur experts carry out strict quality-tests on the chemical before the final dispatch. We hold the expertise of delivering bulk orders of the Folic Acid within the promised timeframe.\r\n\r\nOne can obtain the chemical at competitive rates from us.','Folic Acid','The company is a reliableImporter and Supplierof <strong>Folic Acid</strong>. The Folic Acid we make available is used in various chemical and pharmaceutical industries.\r\n\r\n&nbsp;','publish','open','closed','','folic-acid','','','2017-01-29 10:03:16','2017-01-29 10:03:16','',0,'http://manomaybiochem.com/?post_type=product&#038;p=21',0,'product','',0),(22,1,'2016-06-06 17:08:22','2016-06-06 17:08:22','Fulvic acid is the most plant active of the humic acid compounds. It\'s a plant growth stimulator that increases plant metabolism, nutrient intake and will help with root development. It is biologically extracted from Humic Acid.','Fulvic Acid','Fulvic acid is the most plant active of the humic acid compounds. It\'s a plant growth stimulator that increases plant metabolism, nutrient intake and will help with root development. It is biologically extracted from Humic Acid.','draft','open','closed','','fulvic-acid','','','2016-06-14 00:11:13','2016-06-14 00:11:13','',0,'http://manomaybiochem.com/?post_type=product&#038;p=22',0,'product','',0),(23,1,'2016-06-06 17:11:05','2016-06-06 17:11:05','Bacteriological is a solidifying agent for use in preparing microbiological culture media. The use of agar in microbiological media significantly contributed to the advance of microbiology, paving the way to study pure cultures. Agar is a phycocolloid extracted from a group of red-purple algae, usually Gelidium spp.\r\n\r\n<strong>Industrial Harvesting Techniques\r\n</strong>\r\n\r\nIndustrial harvesting techniques for Gelidiumspp vary, depending on circumstances, but they can be classified as follows:\r\n<ul type=\"1\">\r\n	<li>Gathering of seaweeds washed to the shore.</li>\r\n	<li>Gathering seaweeds by cutting or rooting them out from their beds.</li>\r\n	<li>Cultivation.</li>\r\n</ul>\r\n<strong>Important Characteristics </strong>\r\n<ol>\r\n	<li>Its great gelling power in an aqueous environment allows it to form gels which are more resistant (stronger) than those of any other gel-forming agent, assuming the use of equal concentrations</li>\r\n	<li>It can be used over a wide range of pH, from 5 to 8, and in some cases beyond these limits.</li>\r\n	<li>A 1.5% aqueous solution gels between 32°C-43°C and does not melt below 85°C. This is a unique property of Pranger AGR, compared to other gelling agents</li>\r\n	<li>Its gel has an excellent reversibility allowing it to be repeatedly gelled and melted without losing any of the original properties.</li>\r\n	<li>Transparent gels that are easily coloured can be obtained whose refractive index can also be easily increased by adding sugar, glucose, glycerine, etc., given them an attractive brightness.</li>\r\n	<li>The gel is very stable, not causing precipitates in the presence of certain cations as happens to alginates with calcium.</li>\r\n</ol>\r\n<strong>Industrial Application</strong>\r\n<ol>\r\n	<li>Agar was the first phycocolloid to be used in the human food industry. Agar is used mainly as a gelling agent and in a secondary way as a stabilizing agent and for controlling viscosity.</li>\r\n	<li>In confectionery, to prepare jellies, marshmallows and candies or candy fillers.</li>\r\n	<li>In smaller quantities, agar is used to increase the viscosity of some alcoholic liquers.</li>\r\n	<li>Agar has been used in orchid nurseries for a long time. Improvement in cellular cultivation know-how has brought another important application of agar mainly in the techniques that, starting from meristems, produce perfect and virus-free clones of plants.</li>\r\n</ol>','Agar Agar','Bacteriological is a solidifying agent for use in preparing microbiological culture media. The use of agar in microbiological media significantly contributed to the advance of microbiology, paving the way to study pure cultures. Agar is a phycocolloid extracted from a group of red-purple algae, usually Gelidium spp','publish','open','closed','','agar-agar','','','2016-09-21 03:00:35','2016-09-21 03:00:35','',0,'http://manomaybiochem.com/?post_type=product&#038;p=23',0,'product','',0),(24,1,'2016-06-06 17:12:59','2016-06-06 17:12:59','It is a product that is obtain after the hydrolysis of protein. It is specifically designed for cell culture applications where low endotoxin levels and high clarity are required. All contain pure sources of soluble amino acids, peptides, vitamins and essential elements.\r\n\r\n<strong>INDUSTRIAL HARVESTING TECHNIQUES </strong>\r\n\r\nIndustrial harvesting techniques for Gelidiumspp vary, depending on circumstances, but they can be classified as follows:\r\n<ul>\r\n	<li>Prepared from sources like- Casein, Soyabean, Cotton Seed Meal, etc.</li>\r\n	<li>It is prepared by enzymatic digestion of the above mentioned raw materials under controlled conditions. It contains short chain peptides and Amino acids.</li>\r\n	<li>Appearance: Off white coloured powder</li>\r\n	<li>pH range: 5.0 - 6.0</li>\r\n	<li>Protein content: NLT 80%</li>\r\n</ul>\r\n<strong>INDUSTRIAL APPLICATION </strong>\r\n\r\nIt has wide application in food and pharmaceutical industries and is also used in agriculture for making biofertilisers','Protein Hydrolysates','It is a product that is obtain after the hydrolysis of protein. It is specifically designed for cell culture applications where low endotoxin levels and high clarity are required. All contain pure sources of soluble amino acids, peptides, vitamins and essential elements.','publish','open','closed','','protein-hydrolysates','','','2017-01-30 00:27:41','2017-01-30 00:27:41','',0,'http://manomaybiochem.com/?post_type=product&#038;p=24',0,'product','',0),(25,1,'2016-06-06 17:16:52','2016-06-06 17:16:52','Amino Chelated Zinc','Amino Chelated Zinc','Amino Chelated Zinc','publish','open','closed','','amino-chelated-zinc','','','2016-06-12 06:25:04','2016-06-12 06:25:04','',0,'http://manomaybiochem.com/?post_type=product&#038;p=25',0,'product','',0),(26,1,'2016-06-06 17:17:45','2016-06-06 17:17:45','Amino Chelated Copper','Amino Chelated Copper','','publish','open','closed','','amino-chelated-copper','','','2016-09-23 02:57:52','2016-09-23 02:57:52','',0,'http://manomaybiochem.com/?post_type=product&#038;p=26',0,'product','',0),(27,1,'2016-06-06 17:18:53','2016-06-06 17:18:53','Amino Chelated Manganese','Amino Chelated Manganese','','publish','open','closed','','amino-chelated-manganese','','','2016-06-12 06:21:38','2016-06-12 06:21:38','',0,'http://manomaybiochem.com/?post_type=product&#038;p=27',0,'product','',0),(28,1,'2016-06-06 17:25:19','2016-06-06 17:25:19','Phosphoric acid is also known as orthophosphoric acid. Phosphoric acid is produced industrially by two general routes – the thermal process and the wet process. Phosphoric acid is also an ingredient in over-the-counter anti-nausea medications that also contain high levels of sugar\r\n\r\nIt is used to acidify foods and beverages such as various colas and jams. It provides a tangy or sour taste.\r\n\r\nAs a pH adjuster in cosmetics and skin-care products.it is dispersing agent in detergents and leather treatment.its sanitizing agent in the dairy, food, and brewing industries.','Phosphoric Acid','Phosphoric acid is also known as orthophosphoric acid. Phosphoric acid is produced industrially by two general routes – the thermal process and the wet process. Phosphoric acid is also an ingredient in over-the-counter anti-nausea medications that also contain high levels of sugar','publish','open','closed','','phosphoric-acid','','','2017-01-30 00:11:01','2017-01-30 00:11:01','',0,'http://manomaybiochem.com/?post_type=product&#038;p=28',0,'product','',0),(29,1,'2016-06-06 17:27:14','2016-06-06 17:27:14','We are a quite vigilant formulator of the <strong>Dextrose </strong>, as we take care to abide by the best standards all along the formulation and packaging stage.\r\n\r\nWe cater for the food industry with this chemical, which acts as a sweetening and texturing agent in the preparation of bakery products and beverages','Dextrose','We are a quite vigilant formulator of the <strong>Dextrose </strong>, as we take care to abide by the best standards all along the formulation and packaging stage.\r\n\r\nWe cater for the food industry with this chemical, which acts as a sweetening and texturing agent in the preparation of bakery products and beverages','publish','open','closed','','dextrose','','','2017-01-29 09:57:03','2017-01-29 09:57:03','',0,'http://manomaybiochem.com/?post_type=product&#038;p=29',0,'product','',0),(30,1,'2016-06-06 17:27:53','2016-06-06 17:27:53','It is a colorless, odorless, viscous liquid that is widely used in pharmaceutical formulations.Glycerol is an organic compound, also commonly called  glycerine.\r\n\r\nGlycerol has three hydrophilic hydroxyl groups that are responsible for its solubility in water and its hygroscopic nature','Glycerol','It is a colorless, odorless, viscous liquid that is widely used in pharmaceutical formulations.Glycerol is an organic compound, also commonly called  glycerine.\r\n\r\nGlycerol has three hydrophilic hydroxyl groups that are responsible for its solubility in water and its hygroscopic nature','publish','open','closed','','glycerol','','','2017-01-29 10:11:18','2017-01-29 10:11:18','',0,'http://manomaybiochem.com/?post_type=product&#038;p=30',0,'product','',0),(31,1,'2016-06-06 17:29:37','2016-06-06 17:29:37','Potassium Humate','Potassium Humate','','draft','open','closed','','potassium-humate','','','2016-06-10 00:07:27','2016-06-10 00:07:27','',0,'http://manomaybiochem.com/?post_type=product&#038;p=31',0,'product','',0),(32,1,'2016-06-06 17:30:25','2016-06-06 17:30:25','Organic and natural Seaweed Products will give crops all the sustenance needed to be the healthiest and most productive ever and in the most natural way. Seaweed is packed full of goodness that everything in life needs, and provides it all in a balanced and natural level.','Seaweed Extract Powder','Organic and natural Seaweed Products will give crops all the sustenance needed to be the healthiest and most productive ever and in the most natural way. Seaweed is packed full of goodness that everything in life needs, and provides it all in a balanced and natural level.','draft','open','closed','','seaweed-extract-powder','','','2016-06-10 00:07:51','2016-06-10 00:07:51','',0,'http://manomaybiochem.com/?post_type=product&#038;p=32',0,'product','',0),(33,1,'2016-06-06 17:31:29','2016-06-06 17:31:29','Organic and natural Seaweed Products will give crops all the sustenance needed to be the healthiest and most productive ever and in the most natural way. Seaweed is packed full of goodness that everything in life needs, and provides it all in a balanced and natural level.','Seaweed Extract Powder','','inherit','closed','closed','','32-autosave-v1','','','2016-06-06 17:31:29','2016-06-06 17:31:29','',32,'http://manomaybiochem.com/2016/06/06/32-autosave-v1/',0,'revision','',0),(34,1,'2016-06-06 17:33:21','2016-06-06 17:33:21','','Seaweed extract powder','','inherit','open','closed','','seaweed-extract-powder-2','','','2016-06-06 17:33:21','2016-06-06 17:33:21','',32,'http://manomaybiochem.com/wp-content/uploads/2016/06/Seaweed-extract-powder.jpg',0,'attachment','image/jpeg',0),(35,1,'2016-06-06 17:39:37','2016-06-06 17:39:37','Methylene Blue was studied for its anti-malarial properties. It continues to be used as an anti-malarial to this day.In aquaculture, it has commonly used to treat eggs to ensure they are not lost to fungal overgrowth.\r\n\r\nMethylene Blue is also used for the  treatment of ammonia and nitrite poisoning, as well as an antifungal, anti-parasitic. It serves as an aquarium safe disinfectant.','Methylene Blue','Methylene Blue was studied for its anti-malarial properties. It continues to be used as an anti-malarial to this day.In aquaculture, it has commonly used to treat eggs to ensure they are not lost to fungal overgrowth.','publish','open','closed','','methylene-blue','','','2017-02-07 09:23:53','2017-02-07 09:23:53','',0,'http://manomaybiochem.com/?post_type=product&#038;p=35',0,'product','',0),(36,1,'2016-06-06 17:40:08','2016-06-06 17:40:08','We deal in <strong>Vitamin C</strong> is one of the most used Industrial Chemicals in dietary supplements, food products, etc.\r\n\r\nVitamin C is an essential nutrient for certain animals including humans. The Vitamin C Powder  is provided in tamper-proof packaging, which also prevents it from moisture.\r\n\r\nIt can be obtained from us at a very reasonable price.','Vitamin C','We deal in <strong>Vitamin C</strong> is one of the most used Industrial Chemicals in dietary supplements, food products, etc.\r\n\r\nVitamin C is an essential nutrient for certain animals including humans. The Vitamin C Powder  is provided in tamper-proof packaging, which also prevents it from moisture.','publish','open','closed','','vitamin-c','','','2017-01-30 00:47:35','2017-01-30 00:47:35','',0,'http://manomaybiochem.com/?post_type=product&#038;p=36',0,'product','',0),(37,1,'2016-06-06 17:56:01','2016-06-06 17:56:01','Yucca Powder spray dried is the spray dried extract of the Mohave yucca plant, Yucca Schidigera . Concentrated to 30%,50%,80% powder and liquid yucca actives, spray dried is a high quality, easily blended. For use with animal feedstocks , Yucca Schidigera has been shown to help reduce noxious odours and overall levels of ammonia.\r\n\r\n<strong>Benefits of Yucca</strong>\r\n\r\nAmmonia reduction and odour control is a critical element when operating aqua, poultry, swine and cattle farms. An entire body of research supports the use of Yucca Schidigera as an agent in reducing odour and ammonia. Yucca delivers the industry standard concentration of Yucca solids on the market. Yucca is a free-flowing, homogenous spray dried powder. By extracting the actives in a liquid form and then spray drying, our process delivers consistent levels of biological activity. Yucca is designed to meet food industry standards for micro counts, reducing the chances of cross contamination or including a product which has been treated with irradiation.\r\n\r\n<strong>Its is available in Powder and Liquid Forms.</strong>\r\n\r\n<strong>STORAGE</strong>\r\n\r\nStore sealed bag containing Yucca Extract Powder at 2 - 30°C. Once opened and recapped, place container in a low humidity environment at the same storage temperature. Protect from light by keeping container tightly closed','Yucca Powder','Yucca Powder spray dried is the spray dried extract of the Mohave yucca plant, Yucca Schidigera . Concentrated to 30%,50%,80% powder and liquid yucca actives, spray dried is a high quality, easily blended. For use with animal feedstocks , Yucca Schidigera has been shown to help reduce noxious odours and overall levels of ammonia.','publish','open','closed','','yucca-powder','','','2017-01-30 00:50:59','2017-01-30 00:50:59','',0,'http://manomaybiochem.com/?post_type=product&#038;p=37',0,'product','',0),(218,1,'2017-01-30 00:52:15','2017-01-30 00:52:15','','Zinc Oxide','','inherit','open','closed','','zinc-oxide','','','2017-01-30 00:52:15','2017-01-30 00:52:15','',216,'http://manomaybiochem.com/wp-content/uploads/2017/01/Zinc-Oxide.jpg',0,'attachment','image/jpeg',0),(219,1,'2017-01-30 00:52:16','2017-01-30 00:52:16','','Zinc Sulphate','','inherit','open','closed','','zinc-sulphate','','','2017-01-30 00:52:16','2017-01-30 00:52:16','',216,'http://manomaybiochem.com/wp-content/uploads/2017/01/Zinc-Sulphate.jpeg',0,'attachment','image/jpeg',0),(220,1,'2017-01-30 00:53:39','2017-01-30 00:53:39','We offer a wide range of zinc sulphate that is pure, white and free flow. It is used as zinc additive in various sectors such as feed processing, agriculture, fertilizer ingredient and many more. These are highly effective for treatment of varied crops like cereals, pulses, sugarcane, vegetables and many more.\r\n\r\nThese chemicals are of excellent quality and provided with all the physical and original properties. We offer a wide range of Zinc Sulphate that are pure, white and free flow.','Zinc Sulphate','We offer a wide range of zinc sulphate that is pure, white and free flow. It is used as zinc additive in various sectors such as feed processing, agriculture, fertilizer ingredient and many more. These are highly effective for treatment of varied crops like cereals, pulses, sugarcane, vegetables and many more.','publish','open','closed','','zinc-sulphate','','','2017-02-09 05:46:54','2017-02-09 05:46:54','',0,'http://manomaybiochem.com/?post_type=product&#038;p=220',0,'product','',0),(221,1,'2017-02-01 17:47:50','2017-02-01 17:47:50','','Acid Slurry','','inherit','open','closed','','acid-slurry-2','','','2017-02-01 17:47:50','2017-02-01 17:47:50','',125,'http://manomaybiochem.com/wp-content/uploads/2017/01/Acid-Slurry.jpg',0,'attachment','image/jpeg',0),(38,1,'2016-06-06 17:50:47','2016-06-06 17:50:47','','Actifeed','','inherit','open','closed','','actifeed','','','2016-06-06 17:50:47','2016-06-06 17:50:47','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Actifeed.jpg',0,'attachment','image/jpeg',0),(39,1,'2016-06-06 17:52:17','2016-06-06 17:52:17','','Saponin molecule','','inherit','open','closed','','saponin-molecule','','','2016-06-06 17:52:17','2016-06-06 17:52:17','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Saponin-molecule.jpg',0,'attachment','image/jpeg',0),(40,1,'2016-06-06 17:53:17','2016-06-06 17:53:17','','yucca3','','inherit','open','closed','','yucca3','','','2016-06-06 17:53:17','2016-06-06 17:53:17','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/yucca3.jpg',0,'attachment','image/jpeg',0),(41,1,'2016-06-06 17:55:26','2016-06-06 17:55:26','','yucca4','','inherit','open','closed','','yucca4','','','2016-06-06 17:55:26','2016-06-06 17:55:26','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/yucca4.jpg',0,'attachment','image/jpeg',0),(42,1,'2016-06-06 17:55:48','2016-06-06 17:55:48','','yucca5','','inherit','open','closed','','yucca5','','','2016-06-06 17:55:48','2016-06-06 17:55:48','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/yucca5.jpg',0,'attachment','image/jpeg',0),(44,1,'2016-06-07 17:39:20','2016-06-07 17:39:20','','Contact Us','','publish','closed','closed','','contact-us','','','2016-06-07 17:42:20','2016-06-07 17:42:20','',0,'http://manomaybiochem.com/2016/06/07/contact-us/',5,'nav_menu_item','',0),(45,1,'2016-06-07 17:42:20','2016-06-07 17:42:20','','Testimonials','','publish','closed','closed','','testimonials','','','2016-06-07 17:43:24','2016-06-07 17:43:24','',0,'http://manomaybiochem.com/2016/06/07/testimonials/',3,'nav_menu_item','',0),(46,1,'2016-06-07 17:51:23','2016-06-07 17:51:23','','Manomay Biochem','','inherit','open','closed','','manomay-biochem','','','2016-06-07 17:51:51','2016-06-07 17:51:51','',0,'http://manomaybiochem.com/wp-content/uploads/2016/06/Manomay-Biochem.jpg',0,'attachment','image/jpeg',0),(49,1,'2016-06-12 06:15:08','2016-06-12 06:15:08','','Agar-Agar 1','','inherit','open','closed','','agar-agar-1','','','2016-06-12 06:15:08','2016-06-12 06:15:08','',23,'http://manomaybiochem.com/wp-content/uploads/2016/06/Agar-Agar-1.jpg',0,'attachment','image/jpeg',0),(50,1,'2016-06-12 06:15:44','2016-06-12 06:15:44','','Agar-Agar 2','','inherit','open','closed','','agar-agar-2','','','2016-06-12 06:15:44','2016-06-12 06:15:44','',23,'http://manomaybiochem.com/wp-content/uploads/2016/06/Agar-Agar-2.jpg',0,'attachment','image/jpeg',0),(51,1,'2016-06-12 06:18:28','2016-06-12 06:18:28','','Amino Chilated Copper 1','','inherit','open','closed','','amino-chilated-copper-1','','','2016-06-12 06:18:28','2016-06-12 06:18:28','',26,'http://manomaybiochem.com/wp-content/uploads/2016/06/Amino-Chilated-Copper-1.jpg',0,'attachment','image/jpeg',0),(52,1,'2016-06-12 06:21:10','2016-06-12 06:21:10','','Amino Chilated Magnese 3','','inherit','open','closed','','amino-chilated-magnese-3','','','2016-06-12 06:21:10','2016-06-12 06:21:10','',27,'http://manomaybiochem.com/wp-content/uploads/2016/06/Amino-Chilated-Magnese-3.jpg',0,'attachment','image/jpeg',0),(53,1,'2016-06-12 06:21:11','2016-06-12 06:21:11','','Amino Chilated Magnese 1','','inherit','open','closed','','amino-chilated-magnese-1','','','2016-06-12 06:21:11','2016-06-12 06:21:11','',27,'http://manomaybiochem.com/wp-content/uploads/2016/06/Amino-Chilated-Magnese-1.jpg',0,'attachment','image/jpeg',0),(54,1,'2016-06-12 06:24:11','2016-06-12 06:24:11','','Amino Chilated Zinc 2','','inherit','open','closed','','amino-chilated-zinc-2','','','2016-06-12 06:24:11','2016-06-12 06:24:11','',25,'http://manomaybiochem.com/wp-content/uploads/2016/06/Amino-Chilated-Zinc-2.jpg',0,'attachment','image/jpeg',0),(55,1,'2016-06-12 06:24:12','2016-06-12 06:24:12','','Amino Chilated Zinc 3','','inherit','open','closed','','amino-chilated-zinc-3','','','2016-06-12 06:24:12','2016-06-12 06:24:12','',25,'http://manomaybiochem.com/wp-content/uploads/2016/06/Amino-Chilated-Zinc-3.jpg',0,'attachment','image/jpeg',0),(56,1,'2016-06-12 06:24:14','2016-06-12 06:24:14','','Amino Chilated Zinc 1','','inherit','open','closed','','amino-chilated-zinc-1','','','2016-06-12 06:24:14','2016-06-12 06:24:14','',25,'http://manomaybiochem.com/wp-content/uploads/2016/06/Amino-Chilated-Zinc-1.jpg',0,'attachment','image/jpeg',0),(57,1,'2016-06-12 06:27:10','2016-06-12 06:27:10','','Beef Extract Powder 1','','inherit','open','closed','','beef-extract-powder-1','','','2016-06-12 06:27:10','2016-06-12 06:27:10','',19,'http://manomaybiochem.com/wp-content/uploads/2016/06/Beef-Extract-Powder-1.jpg',0,'attachment','image/jpeg',0),(58,1,'2016-06-12 06:27:13','2016-06-12 06:27:13','','Beef Extract Powder 2','','inherit','open','closed','','beef-extract-powder-2','','','2016-06-12 06:27:13','2016-06-12 06:27:13','',19,'http://manomaybiochem.com/wp-content/uploads/2016/06/Beef-Extract-Powder-2.jpg',0,'attachment','image/jpeg',0),(59,1,'2016-06-12 06:29:39','2016-06-12 06:29:39','','Dextrose Powder 1','','inherit','open','closed','','dextrose-powder-1','','','2016-06-12 06:29:39','2016-06-12 06:29:39','',29,'http://manomaybiochem.com/wp-content/uploads/2016/06/Dextrose-Powder-1.jpg',0,'attachment','image/jpeg',0),(60,1,'2016-06-12 06:29:40','2016-06-12 06:29:40','','Dextrose Powder 2','','inherit','open','closed','','dextrose-powder-2','','','2016-06-12 06:29:40','2016-06-12 06:29:40','',29,'http://manomaybiochem.com/wp-content/uploads/2016/06/Dextrose-Powder-2.jpg',0,'attachment','image/jpeg',0),(61,1,'2016-06-12 06:33:05','2016-06-12 06:33:05','','Folic Acid 2','','inherit','open','closed','','folic-acid-2','','','2016-06-12 06:33:05','2016-06-12 06:33:05','',21,'http://manomaybiochem.com/wp-content/uploads/2016/06/Folic-Acid-2.jpg',0,'attachment','image/jpeg',0),(62,1,'2016-06-12 06:33:06','2016-06-12 06:33:06','','Folic Acid 3','','inherit','open','closed','','folic-acid-3','','','2016-06-12 06:33:06','2016-06-12 06:33:06','',21,'http://manomaybiochem.com/wp-content/uploads/2016/06/Folic-Acid-3.jpg',0,'attachment','image/jpeg',0),(63,1,'2016-06-12 06:33:07','2016-06-12 06:33:07','','Folic Acid 1','','inherit','open','closed','','folic-acid-1','','','2016-06-12 06:33:07','2016-06-12 06:33:07','',21,'http://manomaybiochem.com/wp-content/uploads/2016/06/Folic-Acid-1.jpg',0,'attachment','image/jpeg',0),(64,1,'2016-06-12 06:36:02','2016-06-12 06:36:02','','Fulvic Acid 2','','inherit','open','closed','','fulvic-acid-2','','','2016-06-12 06:36:02','2016-06-12 06:36:02','',22,'http://manomaybiochem.com/wp-content/uploads/2016/06/Fulvic-Acid-2.jpg',0,'attachment','image/jpeg',0),(65,1,'2016-06-12 06:36:08','2016-06-12 06:36:08','','Fulvic Acid 3','','inherit','open','closed','','fulvic-acid-3','','','2016-06-12 06:36:08','2016-06-12 06:36:08','',22,'http://manomaybiochem.com/wp-content/uploads/2016/06/Fulvic-Acid-3.jpg',0,'attachment','image/jpeg',0),(66,1,'2016-06-12 06:36:09','2016-06-12 06:36:09','','Fulvic Acid 1','','inherit','open','closed','','fulvic-acid-1','','','2016-06-12 06:36:09','2016-06-12 06:36:09','',22,'http://manomaybiochem.com/wp-content/uploads/2016/06/Fulvic-Acid-1.jpg',0,'attachment','image/jpeg',0),(67,1,'2016-06-12 06:42:11','2016-06-12 06:42:11','','Glycerol 1','','inherit','open','closed','','glycerol-1','','','2016-06-12 06:42:11','2016-06-12 06:42:11','',30,'http://manomaybiochem.com/wp-content/uploads/2016/06/Glycerol-1.jpg',0,'attachment','image/jpeg',0),(68,1,'2016-06-12 06:42:13','2016-06-12 06:42:13','','','','inherit','open','closed','','glycerol-2','','','2017-02-02 06:14:43','2017-02-02 06:14:43','',30,'http://manomaybiochem.com/wp-content/uploads/2016/06/Glycerol-2.jpg',0,'attachment','image/jpeg',0),(69,1,'2016-06-12 06:42:14','2016-06-12 06:42:14','','Glycerol 3','','inherit','open','closed','','glycerol-3','','','2016-06-12 06:42:14','2016-06-12 06:42:14','',30,'http://manomaybiochem.com/wp-content/uploads/2016/06/Glycerol-3.jpg',0,'attachment','image/jpeg',0),(70,1,'2016-06-12 06:45:13','2016-06-12 06:45:13','','Malt Powder 2','','inherit','open','closed','','malt-powder-2','','','2016-06-12 06:45:13','2016-06-12 06:45:13','',20,'http://manomaybiochem.com/wp-content/uploads/2016/06/Malt-Powder-2.jpg',0,'attachment','image/jpeg',0),(71,1,'2016-06-12 06:45:14','2016-06-12 06:45:14','','Malt Powder 3','','inherit','open','closed','','malt-powder-3','','','2016-06-12 06:45:14','2016-06-12 06:45:14','',20,'http://manomaybiochem.com/wp-content/uploads/2016/06/Malt-Powder-3.jpg',0,'attachment','image/jpeg',0),(72,1,'2016-06-12 06:45:16','2016-06-12 06:45:16','','Malt Powder 1','','inherit','open','closed','','malt-powder-1','','','2016-06-12 06:45:16','2016-06-12 06:45:16','',20,'http://manomaybiochem.com/wp-content/uploads/2016/06/Malt-Powder-1.jpg',0,'attachment','image/jpeg',0),(73,1,'2016-06-12 06:47:28','2016-06-12 06:47:28','','Methylene Blue 1','','inherit','open','closed','','methylene-blue-1','','','2016-06-12 06:47:28','2016-06-12 06:47:28','',35,'http://manomaybiochem.com/wp-content/uploads/2016/06/Methylene-Blue-1.jpg',0,'attachment','image/jpeg',0),(74,1,'2016-06-12 06:47:29','2016-06-12 06:47:29','','Methylene Blue 2','','inherit','open','closed','','methylene-blue-2','','','2016-06-12 06:47:29','2016-06-12 06:47:29','',35,'http://manomaybiochem.com/wp-content/uploads/2016/06/Methylene-Blue-2.jpg',0,'attachment','image/jpeg',0),(75,1,'2017-01-30 00:09:26','2017-01-30 00:09:26','Peptones are an enzymatic digest of protein used to cultivate non-fastidious microorganisms. Peptones are derived from meat digested by proteolytic digestion. In addition to peptides, the resulting spray dried material also contains fats, metals, salts, vitamins and many other biological compounds. Peptones are produced from porcine and / or bovine tissues. Thetissues are digested enzymically to create small peptides and then spray dried.\n\n<strong>TYPES OF PEPTONES:</strong>\n<ul>\n	<li><strong>Peptone Powder</strong>: This is a high quality hydrolysate produced by enzymatic digestion of animal tissues. It is widely used in culture media &amp; has been used extensively in the manufacture of toxins, vaccines &amp; other biological products.</li>\n</ul>\n<strong>Soya Peptone:</strong> Soya Peptone GMO-Free, Animal-Free is a specially designed product, Soy peptone is a papaic digest of defatted soybean meal. It is used in culture media for the cultivation of a wide variety of microorganisms including bacteria and fungi. It is an excellent source of vitamins and carbohydrates. The raw material to produce this soy peptone is guaranteed to be GMO-Free and Animal-Free (eliminates TSE/BSE issues). It is recommended for use in microbiological, tissue culture and fermentation media.\n\n<strong>INDUSTRIAL APPLICATION </strong>\n<ul>\n	<li>Peptones are used in Microbiological culture media to support the nutritional requirements of microorganisms.</li>\n	<li>Industrial fermentations and the production of human and veterinary vaccines.</li>\n	<li>Peptones are used in nutrient media for growing bacteria and fungi. Peptones are also used for detection of microorganisms.</li>\n</ul>\nPeptones are used in Diagnostics, Fermentation and Cell Culture Industries','Peptone Powder','<strong>Types of Peptone:</strong>\n<ul>\n	<li><strong>Peptone Powder</strong>: This is a high quality hydrolysate produced by enzymatic digestion of animal tissues. It is widely used in culture media &amp; has been used extensively in the manufacture of toxins, vaccines &amp; other biological products.</li>\n</ul>\n<strong>Soya Peptone:</strong> Soya Peptone GMO-Free, Animal-Free is a specially designed product, Soy peptone is a papaic digest of defatted soybean meal. It is used in culture media for the cultivation of a wide variety of microorganisms including bacteria and fungi. It is an excellent source of vitamins and carbohydrates. The raw material to produce this soy peptone is guaranteed to be GMO-Free and Animal-Free (eliminates TSE/BSE issues). It is recommended for use in microbiological, tissue culture and fermentation media.\n\n<strong>Industrial Application </strong>\n<ul>\n	<li>Peptones are used in Microbiological culture media to support the nutritional requirements of microorganisms.</li>\n	<li>Industrial fermentations and the production of human and veterinary vaccines.</li>\n	<li>Peptones are used in nutrient media for growing bacteria and fungi. Peptones are also used for detection of microorganisms.</li>\n	<li>Peptones are used in Diagnostics, Fermentation and Cell Culture Industries.</li>\n</ul>','inherit','closed','closed','','18-autosave-v1','','','2017-01-30 00:09:26','2017-01-30 00:09:26','',18,'http://manomaybiochem.com/18-autosave-v1/',0,'revision','',0),(76,1,'2016-06-12 06:49:00','2016-06-12 06:49:00','','Peptone Powder 1','','inherit','open','closed','','peptone-powder-1','','','2016-06-12 06:49:00','2016-06-12 06:49:00','',18,'http://manomaybiochem.com/wp-content/uploads/2016/06/Peptone-Powder-1.jpg',0,'attachment','image/jpeg',0),(77,1,'2016-06-12 06:49:01','2016-06-12 06:49:01','','Peptone Powder 3','','inherit','open','closed','','peptone-powder-3','','','2016-06-12 06:49:01','2016-06-12 06:49:01','',18,'http://manomaybiochem.com/wp-content/uploads/2016/06/Peptone-Powder-3.jpg',0,'attachment','image/jpeg',0),(78,1,'2016-06-12 06:52:20','2016-06-12 06:52:20','','Phosphoric Acid 3','','inherit','open','closed','','phosphoric-acid-3','','','2016-06-12 06:52:20','2016-06-12 06:52:20','',28,'http://manomaybiochem.com/wp-content/uploads/2016/06/Phosphoric-Acid-3.jpg',0,'attachment','image/jpeg',0),(79,1,'2016-06-12 06:52:21','2016-06-12 06:52:21','','Phosphoric Acid 1','','inherit','open','closed','','phosphoric-acid-1','','','2016-06-12 06:52:21','2016-06-12 06:52:21','',28,'http://manomaybiochem.com/wp-content/uploads/2016/06/Phosphoric-Acid-1.jpg',0,'attachment','image/jpeg',0),(80,1,'2016-06-12 06:52:22','2016-06-12 06:52:22','','Phosphoric Acid 2','','inherit','open','closed','','phosphoric-acid-2','','','2016-06-12 06:52:22','2016-06-12 06:52:22','',28,'http://manomaybiochem.com/wp-content/uploads/2016/06/Phosphoric-Acid-2.jpg',0,'attachment','image/jpeg',0),(81,1,'2016-06-12 06:55:08','2016-06-12 06:55:08','','Protein Hydrolysate Powder 3','','inherit','open','closed','','protein-hydrolysate-powder-3','','','2016-06-12 06:55:08','2016-06-12 06:55:08','',24,'http://manomaybiochem.com/wp-content/uploads/2016/06/Protein-Hydrolysate-Powder-3.jpg',0,'attachment','image/jpeg',0),(82,1,'2016-06-12 06:55:10','2016-06-12 06:55:10','','Protein Hydrolysate Powder 1','','inherit','open','closed','','protein-hydrolysate-powder-1','','','2016-06-12 06:55:10','2016-06-12 06:55:10','',24,'http://manomaybiochem.com/wp-content/uploads/2016/06/Protein-Hydrolysate-Powder-1.jpg',0,'attachment','image/jpeg',0),(83,1,'2016-06-12 06:55:11','2016-06-12 06:55:11','','Protein Hydrolysate Powder 2','','inherit','open','closed','','protein-hydrolysate-powder-2','','','2016-06-12 06:55:11','2016-06-12 06:55:11','',24,'http://manomaybiochem.com/wp-content/uploads/2016/06/Protein-Hydrolysate-Powder-2.jpg',0,'attachment','image/jpeg',0),(84,1,'2016-06-12 06:57:45','2016-06-12 06:57:45','','Vitamin C 1','','inherit','open','closed','','vitamin-c-1','','','2016-06-12 06:57:45','2016-06-12 06:57:45','',36,'http://manomaybiochem.com/wp-content/uploads/2016/06/Vitamin-C-1.jpg',0,'attachment','image/jpeg',0),(85,1,'2016-06-12 06:57:46','2016-06-12 06:57:46','','Vitamin C 2','','inherit','open','closed','','vitamin-c-2','','','2016-06-12 06:57:46','2016-06-12 06:57:46','',36,'http://manomaybiochem.com/wp-content/uploads/2016/06/Vitamin-C-2.jpg',0,'attachment','image/jpeg',0),(86,1,'2016-06-12 06:57:47','2016-06-12 06:57:47','','Vitamin C 3','','inherit','open','closed','','vitamin-c-3','','','2016-06-12 06:57:47','2016-06-12 06:57:47','',36,'http://manomaybiochem.com/wp-content/uploads/2016/06/Vitamin-C-3.jpg',0,'attachment','image/jpeg',0),(87,1,'2016-06-12 06:57:48','2016-06-12 06:57:48','','Vitamin C 4','','inherit','open','closed','','vitamin-c-4','','','2016-06-12 06:57:48','2016-06-12 06:57:48','',36,'http://manomaybiochem.com/wp-content/uploads/2016/06/Vitamin-C-4.jpg',0,'attachment','image/jpeg',0),(88,1,'2016-06-12 07:00:50','2016-06-12 07:00:50','','Yeast Powder 1','','inherit','open','closed','','yeast-powder-1','','','2016-06-12 07:00:50','2016-06-12 07:00:50','',10,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yeast-Powder-1.jpg',0,'attachment','image/jpeg',0),(89,1,'2016-06-12 07:00:51','2016-06-12 07:00:51','','Yeast Powder 2','','inherit','open','closed','','yeast-powder-2','','','2016-06-12 07:00:51','2016-06-12 07:00:51','',10,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yeast-Powder-2.jpg',0,'attachment','image/jpeg',0),(90,1,'2016-06-12 07:03:36','2016-06-12 07:03:36','','Yucca Powder 3','','inherit','open','closed','','yucca-powder-3','','','2016-06-12 07:03:36','2016-06-12 07:03:36','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yucca-Powder-3.jpg',0,'attachment','image/jpeg',0),(91,1,'2016-06-12 07:03:37','2016-06-12 07:03:37','','Yucca Powder 1','','inherit','open','closed','','yucca-powder-1','','','2016-06-12 07:03:37','2016-06-12 07:03:37','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yucca-Powder-1.jpg',0,'attachment','image/jpeg',0),(92,1,'2016-06-12 07:03:38','2016-06-12 07:03:38','','Yucca Powder 2','','inherit','open','closed','','yucca-powder-2','','','2016-06-12 07:03:38','2016-06-12 07:03:38','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yucca-Powder-2.jpg',0,'attachment','image/jpeg',0),(94,1,'2016-09-21 02:49:41','2016-09-21 02:49:41','The<strong> Yucca Schidigera</strong> is a plant belonging to the Agavaceae Family and is native to the deserts of the southwestern U.S. and Baja, Mexico. The Yucca Schidigera is a tree that has a compact flower cluster, a conspicuous basal trunk, leaves and grows to average heights of 4 meters. Yucca Schidigera is known for its many benefits and applications, most in the<strong> animal feed, nutraceutical and food &amp; beverage industries</strong>.\n\nFor more than 25 years, <strong>Actifeed</strong> has specialized in the development of this natural ingredient, which it has trademarked as Mex Yucca and is currently the leading distributor in Europe.\n\n<img class=\"size-full wp-image-38 alignleft\" src=\"http://manomaybiochem.com/wp-content/uploads/2016/06/Actifeed.jpg\" alt=\"Actifeed\" width=\"202\" height=\"137\" />\n\nOur knowledge of all the active <strong>phytocomposants</strong> of this plant like saponins, glycocomposants, phenolic compounds, tannins... has contributed to our rapid success.\n\nThe most important component of Yucca Schidigera is saponins. Extremely complex, the saponins are of steroidale, biochemical nature with numerous properties: emulsifying, detergent, dispersantes, surfactante, foaming, antifungal, antibacterial, insecticidal...\n\n<strong>Actifeed</strong> protects the natural character of yucca by managing the process of manufacturing (manual harvest, mechanical pressing, drying in the sun) which guarantees an exceptional wealth of <strong>phytocomponsants</strong>.\n\nYucca Schidigera is available in powders and liquids. Mex Yucca powders and liquids are offered in various concentrations and purity.\n\n<strong>Saponin molecule</strong>\n\n<img class=\"alignnone size-full wp-image-39\" src=\"http://manomaybiochem.com/wp-content/uploads/2016/06/Saponin-molecule.jpg\" alt=\"Saponin molecule\" width=\"266\" height=\"154\" />\n\n<img class=\"size-full wp-image-40 alignleft\" src=\"http://manomaybiochem.com/wp-content/uploads/2016/06/yucca3.jpg\" alt=\"yucca3\" width=\"202\" height=\"137\" />\n\nWidely known in the world bibliography, Yucca Schidigera is recognized for its efficiency in the control of the ammonia water and the odors, including pets such as dogs and cats. The action on the nitrogenous metabolism contributes to the balance of the digestive system to the gastric mono. Finally, recent searches underlined assets <strong>anti-methanogenes</strong> (ruminant) and <strong>anti-protozoa</strong> (mono gastric).\n\nThe vegetable world also benefits from the saponins of <strong>Yucca Schidigera</strong>. Whether it is the big cultures, the truck farming, horticulture, vineyard, and even the lawns of garden or golf, the advantages of such a product are clear :\n<ul>\n	<li>Wetting agent</li>\n	<li>Racinaire development</li>\n	<li>Organic Actiavting</li>\n	<li>Fungal decompressing</li>\n	<li>Organic control</li>\n</ul>\n<strong>Actifeed</strong> is also a supplier of <strong>QuillajaSaponaria</strong>. Some refer to quillaja as the cousin of yucca. It also is rich in saponins, however, there are considerable differences.\n\n<img class=\"alignnone size-full wp-image-41\" src=\"http://manomaybiochem.com/wp-content/uploads/2016/06/yucca4.jpg\" alt=\"yucca4\" width=\"205\" height=\"154\" /><img class=\"alignnone size-full wp-image-42\" src=\"http://manomaybiochem.com/wp-content/uploads/2016/06/yucca5.jpg\" alt=\"yucca5\" width=\"249\" height=\"202\" />','Yucca Powder/liquid','','inherit','closed','closed','','37-autosave-v1','','','2016-09-21 02:49:41','2016-09-21 02:49:41','',37,'http://manomaybiochem.com/37-autosave-v1/',0,'revision','',0),(95,1,'2016-09-21 02:48:30','2016-09-21 02:48:30','','Yucca Liquid','Yucca Liquid','inherit','open','closed','','yucca-liquid-1','','','2016-09-21 02:49:29','2016-09-21 02:49:29','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yucca-Liquid-1.jpg',0,'attachment','image/jpeg',0),(96,1,'2016-09-21 02:48:31','2016-09-21 02:48:31','','yucca-liquid-2','','inherit','open','closed','','yucca-liquid-2','','','2016-09-21 02:48:31','2016-09-21 02:48:31','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yucca-Liquid-2.jpg',0,'attachment','image/jpeg',0),(97,1,'2016-09-21 02:48:32','2016-09-21 02:48:32','','yucca-liquid-3','','inherit','open','closed','','yucca-liquid-3','','','2016-09-21 02:48:32','2016-09-21 02:48:32','',37,'http://manomaybiochem.com/wp-content/uploads/2016/06/Yucca-Liquid-3.jpg',0,'attachment','image/jpeg',0),(98,1,'2016-09-21 02:59:24','2016-09-21 02:59:24','Bacteriological is a solidifying agent for use in preparing microbiological culture media. The use of agar in microbiological media significantly contributed to the advance of microbiology, paving the way to study pure cultures. Agar is a phycocolloid extracted from a group of red-purple algae, usually Gelidium spp.\n\n<strong>Industrial Harvesting Techniques\n</strong>\n\nIndustrial harvesting techniques for Gelidiumspp vary, depending on circumstances, but they can be classified as follows:\n<ul type=\"1\">\n	<li>Gathering of seaweeds washed to the shore.</li>\n	<li>Gathering seaweeds by cutting or rooting them out from their beds.</li>\n	<li>Cultivation.</li>\n</ul>\n<strong>Important Characteristics </strong>\n<ol>\n	<li>Its great gelling power in an aqueous environment allows it to form gels which are more resistant (stronger) than those of any other gel-forming agent, assuming the use of equal concentrations</li>\n	<li>It can be used over a wide range of pH, from 5 to 8, and in some cases beyond these limits.</li>\n	<li>A 1.5% aqueous solution gels between 32°C-43°C and does not melt below 85°C. This is a unique property of Pranger AGR, compared to other gelling agents</li>\n	<li>Its gel has an excellent reversibility allowing it to be repeatedly gelled and melted without losing any of the original properties.</li>\n	<li>Transparent gels that are easily coloured can be obtained whose refractive index can also be easily increased by adding sugar, glucose, glycerine, etc., given them an attractive brightness.</li>\n	<li>The gel is very stable, not causing precipitates in the presence of certain cations as happens to alginates with calcium.</li>\n</ol>\n<strong>Industrial Application</strong>\n<ol>\n	<li>Agar was the first phycocolloid to be used in the human food industry. Agar is used mainly as a gelling agent and in a secondary way as a stabilizing agent and for controlling viscosity.</li>\n	<li>In confectionery, to prepare jellies, marshmallows and candies or candy fillers.</li>\n	<li>In smaller quantities, agar is used to increase the viscosity of some alcoholic liquers.</li>\n	<li>Agar has been used in orchid nurseries for a long time. Improvement in cellular cultivation know-how has brought another important application of agar mainly in the techniques that, starting from meristems, produce perfect and virus-free clones of plants.</li>\n</ol>','Agar Agar','','inherit','closed','closed','','23-autosave-v1','','','2016-09-21 02:59:24','2016-09-21 02:59:24','',23,'http://manomaybiochem.com/23-autosave-v1/',0,'revision','',0),(108,1,'2017-01-06 06:51:05','2017-01-06 06:51:05','Lactose is a disaccharide sugar composed of galactose and glucose that is found in milk.It is extracted from sweet or sour whey.\r\n\r\nThe name comes from lacte, the Latin word for milk, plus those ending used to name sugars.Lactose is not fermented by most yeast during brewing, which may be used to advantage. Lactose is added to pills as a filler because of its physical properties.','Lactose','Lactose is a disaccharide sugar composed of galactose and glucose that is found in milk.It is extracted from sweet or sour whey.','publish','open','closed','','lactose','','','2017-01-29 10:29:54','2017-01-29 10:29:54','',0,'http://manomaybiochem.com/?post_type=product&#038;p=108',0,'product','',0),(100,1,'2016-09-21 03:04:18','2016-09-21 03:04:18','It is a dehydrated extract of bovine tissue. Beef Extract Powder is prepared and standardized for use in microbiological culture media, where it is generally used to replace infusion of meat\n\n&nbsp;','Beef Extract Powder','Beef Extract is prepared from fresh beef of bovine animals. Its function can be described as complementing the nutritive properties of our peptone. Beef Extract provides nitrogen, amino acids, vitamins, and carbon. it is generally used to replace infusion of meat. Culture media containing Beef Extract Powder are recommended for use in bacteriological examination of water, milk, and other materials, where uniform composition of media is important. It is relied upon for biochemical studies, particularly fermentation reactions because of its independence from ferment-able substances.','inherit','closed','closed','','19-autosave-v1','','','2016-09-21 03:04:18','2016-09-21 03:04:18','',19,'http://manomaybiochem.com/19-autosave-v1/',0,'revision','',0),(103,1,'2016-09-23 02:50:21','2016-09-23 02:50:21','It is a product that is obtain after the hydrolysis of protein. It is specifically designed for cell culture applications where low endotoxin levels and high clarity are required. All contain pure sources of soluble amino acids, peptides, vitamins and essential elements.','Protein Hydrolysates','Pranger Amino 280 is a product that is obtain after the hydrolysis of protein. Pranger Amino 280 are specifically designed for cell culture applications where low endotoxin levels and high clarity are required. All contain pure sources of soluble amino acids, peptides, vitamins and essential elements.\n\n<strong>INDUSTRIAL HARVESTING TECHNIQUES OF Pranger AGR</strong>\n\nIndustrial harvesting techniques for Gelidium spp vary, depending on circumstances, but they can be classified as follows:\n<ul>\n	<li>Prepared from sources like- Casein, Soyabean, Cotton Seed Meal, etc.</li>\n	<li>It is prepared by enzymatic digestion of the above mentioned raw materials under controlled conditions. It contains short chain peptides and Amino acids.</li>\n	<li>Appearance: Off white coloured powder</li>\n	<li>pH range: 5.0 - 6.0</li>\n	<li>Protein content: NLT 80%</li>\n</ul>','inherit','closed','closed','','24-autosave-v1','','','2016-09-23 02:50:21','2016-09-23 02:50:21','',24,'http://manomaybiochem.com/24-autosave-v1/',0,'revision','',0),(104,1,'2016-09-23 02:57:42','2016-09-23 02:57:42','','amino-chilated-copper-3','','inherit','open','closed','','amino-chilated-copper-3','','','2016-09-23 02:57:42','2016-09-23 02:57:42','',26,'http://manomaybiochem.com/wp-content/uploads/2016/06/Amino-Chilated-Copper-3.jpg',0,'attachment','image/jpeg',0),(106,1,'2016-09-29 09:34:06','2016-09-29 09:34:06','','Yucca Liquid','','publish','open','closed','','yucca-liquid','','','2016-09-29 09:36:25','2016-09-29 09:36:25','',0,'http://manomaybiochem.com/shop/yucca-liquid/',0,'product','',0),(109,1,'2017-01-06 06:49:27','2017-01-06 06:49:27','','lactose-1','','inherit','open','closed','','lactose-1','','','2017-01-06 06:49:27','2017-01-06 06:49:27','',108,'http://manomaybiochem.com/wp-content/uploads/2017/01/Lactose-1.jpg',0,'attachment','image/jpeg',0),(110,1,'2017-01-06 06:49:32','2017-01-06 06:49:32','','lactose-2','','inherit','open','closed','','lactose-2','','','2017-01-06 06:49:32','2017-01-06 06:49:32','',108,'http://manomaybiochem.com/wp-content/uploads/2017/01/Lactose-2.jpg',0,'attachment','image/jpeg',0),(111,1,'2017-01-06 06:53:12','2017-01-06 06:53:12','It is a white hygroscopic solid mineral that occurs naturally as periclase and is a source of magnesium. Magnesium oxide is produced by the calcination of magnesium carbonate or magnesium hydroxide.\r\n\r\nMagnesium oxide is used for relief of heartburn and sour stomach, as an antacid, magnesium supplement, and as a short-term laxative. It is also used to improve symptoms of indigestion.\r\n\r\nIt is also used as an insulator in heat-resistant electrical cable.MgO is also used as a protective coating in plasma displays.Tobe stored in a cool and dry area','Magnesium Oxide','It is a white hygroscopic solid mineral that occurs naturally as periclase and is a source of magnesium. Magnesium oxide is produced by the calcination of magnesium carbonate or magnesium hydroxide.','publish','open','closed','','magnesium-oxide','','','2017-01-29 10:41:06','2017-01-29 10:41:06','',0,'http://manomaybiochem.com/?post_type=product&#038;p=111',0,'product','',0),(112,1,'2017-01-06 06:52:02','2017-01-06 06:52:02','','magnesium-oxide-1','','inherit','open','closed','','magnesium-oxide-1','','','2017-01-06 06:52:02','2017-01-06 06:52:02','',111,'http://manomaybiochem.com/wp-content/uploads/2017/01/Magnesium-Oxide-1.jpg',0,'attachment','image/jpeg',0),(113,1,'2017-01-06 06:52:04','2017-01-06 06:52:04','','magnesium-oxide-2','','inherit','open','closed','','magnesium-oxide-2','','','2017-01-06 06:52:04','2017-01-06 06:52:04','',111,'http://manomaybiochem.com/wp-content/uploads/2017/01/Magnesium-Oxide-2.jpg',0,'attachment','image/jpeg',0),(114,1,'2017-01-06 06:55:54','2017-01-06 06:55:54','We are renowned manufacturers and suppliers of excellent quality Sodium Selenite.It is white crystalline powder. It is mainly used in Pharma,food&amp; veterinary etc. Used as source of selenium in ceramic paints and glass float glass, this chemical is processed using high quality chemical compounds in compliance with the international standards.\r\n\r\nOur clients can avail this chemical from us at the most reasonable rates.','Sodium Selenite','We are renowned manufacturers and suppliers of excellent quality Sodium Selenite.It is white crystalline powder. It is mainly used in Pharma,food&amp; veterinary etc. Used as source of selenium in ceramic paints and glass float glass, this chemical is processed using high quality chemical compounds in compliance with the international standards.\r\n\r\nOur clients can avail this chemical from us at the most reasonable rates.','publish','open','closed','','sodium-selenite','','','2017-01-30 00:33:35','2017-01-30 00:33:35','',0,'http://manomaybiochem.com/?post_type=product&#038;p=114',0,'product','',0),(115,1,'2017-01-06 06:55:02','2017-01-06 06:55:02','','','','inherit','open','closed','','sodium-selenite-2','','','2017-02-02 06:14:01','2017-02-02 06:14:01','',114,'http://manomaybiochem.com/wp-content/uploads/2017/01/Sodium-Selenite-2.jpg',0,'attachment','image/jpeg',0),(116,1,'2017-01-06 06:55:11','2017-01-06 06:55:11','','sodium-selenite-1','','inherit','open','closed','','sodium-selenite-1','','','2017-01-06 06:55:11','2017-01-06 06:55:11','',114,'http://manomaybiochem.com/wp-content/uploads/2017/01/Sodium-Selenite-1.jpg',0,'attachment','image/jpeg',0),(117,1,'2017-01-07 05:01:25','2017-01-07 05:01:25','','scientist working at the laboratory','','inherit','open','closed','','scientist-working-at-the-laboratory','','','2017-01-07 05:01:25','2017-01-07 05:01:25','',0,'http://manomaybiochem.com/wp-content/uploads/2017/01/Chemical_Engineering.jpg',0,'attachment','image/jpeg',0),(118,1,'2017-01-11 10:32:13','2017-01-11 10:32:13','Acriflavine is a preventative and treatment for the control of Oodinium (Gold Dust Disease) in freshwater and marine fishes.\r\n\r\nUseful for fish egg disinfection, treatment of open wounds, and external protozoan infections. Effective in the control of the bacterial infection \"columnaris\"\r\n\r\nAcriflavine is now used primarily as a topical antiseptic and is often mixed with proflavine for commercial preparations.Useful in bacterial infections such as mouth fungus, salt water Ich, fin and tail rot, fungus, saproglenia, skin parasites, oodinium (velvet), sliminess of skin and as anti ectoparasite.','Acriflavine','','publish','open','closed','','acriflavine','','','2017-01-29 09:24:03','2017-01-29 09:24:03','',0,'http://manomaybiochem.com/?post_type=product&#038;p=118',0,'product','',0),(119,1,'2017-01-11 10:30:37','2017-01-11 10:30:37','','Acriflavine','','inherit','open','closed','','acriflavine-1','','','2017-01-11 10:30:45','2017-01-11 10:30:45','',118,'http://manomaybiochem.com/wp-content/uploads/2017/01/Acriflavine-1.jpg',0,'attachment','image/jpeg',0),(120,1,'2017-01-11 10:31:11','2017-01-11 10:31:11','','Acriflavine','','inherit','open','closed','','acriflavine','','','2017-01-11 10:31:23','2017-01-11 10:31:23','',118,'http://manomaybiochem.com/wp-content/uploads/2017/01/Acriflavine.jpg',0,'attachment','image/jpeg',0),(123,1,'2017-01-29 09:20:35','2017-01-29 09:20:35','we are offering an extensive and flawless collection of Acetone to our patrons. Widely used in laboratories for a number of experiments and testes, these products are high in demand.\r\n\r\nAfter sourcing these products from our suppliers, our professionals are conducting several quality examinations on these products to ensure their supremacy.','Acetone','we are offering an extensive and flawless collection of Acetone to our patrons. Widely used in laboratories for a number of experiments and testes, these products are high in demand.\r\n\r\nAfter sourcing these products from our suppliers, our professionals are conducting several quality examinations on these products to ensure their supremacy.','publish','open','closed','','acetone','','','2017-02-02 06:14:53','2017-02-02 06:14:53','',0,'http://manomaybiochem.com/?post_type=product&#038;p=123',0,'product','',0),(125,1,'2017-01-29 09:22:35','2017-01-29 09:22:35','With immense experience in the field, we are able to manufacture, wholesale and supply a wide range of Acid Slurry that is produced at par with industrial standards.Highly appreciated for its finest quality.\r\n\r\nOur range of Acid Slurry is known for its accurate composition and is widely used in a number of industries applications.','Acid Slurry','With immense experience in the field, we are able to manufacture, wholesale and supply a wide range of Acid Slurry that is produced at par with industrial standards.Highly appreciated for its finest quality.\r\n\r\nOur range of Acid Slurry is known for its accurate composition and is widely used in a number of industries applications.','publish','open','closed','','acid-slurry','','','2017-02-01 17:48:36','2017-02-01 17:48:36','',0,'http://manomaybiochem.com/?post_type=product&#038;p=125',0,'product','',0),(126,1,'2017-01-29 09:25:51','2017-01-29 09:25:51','It is also known as sodium borate, sodium tetraborate or disodium tetraborate, these are important boron compound, a mineral, and a salt of boric acid.Boron compound in nature, these are used in the manufacturing process of detergents, cosmetics and enamel glazes.\r\n\r\nFurther, these can also be used for the production of buffer solutions in biochemistry, as a fire retardant, as an anti-fungal compound for fiberglass, as an insecticide, as a flux in metallurgy and as a precursor for other boron compounds.\r\n\r\nUsually offered as a white powder, it consists of soft colorless crystals which dissolve easily in water.','Borax','It is also known as sodium borate, sodium tetraborate or disodium tetraborate, these are important boron compound, a mineral, and a salt of boric acid.Boron compound in nature, these are used in the manufacturing process of detergents, cosmetics and enamel glazes.','publish','open','closed','','borax','','','2017-02-01 17:52:00','2017-02-01 17:52:00','',0,'http://manomaybiochem.com/?post_type=product&#038;p=126',0,'product','',0),(127,1,'2017-01-29 09:27:44','2017-01-29 09:27:44','<strong> B</strong>oric acid is water-soluble white or colorless crystalline compound, used as an antiseptic and preservative and in fireproofing compounds, cosmetics, cements, and enamels.\r\n\r\nFurther, we assure that our range is free from any impurities and is packaged in high grade material to maintain its properties.The entire range of the is reasonably priced by us.\r\n\r\n<strong>Application</strong>\r\n<ul>\r\n	<li>Electroplating</li>\r\n	<li>Medicines</li>\r\n	<li>Agriculture</li>\r\n	<li>Wood preservative</li>\r\n	<li>Idealy use as flame retardant and corrosion inhibitor</li>\r\n	<li>Use in ceramic industry</li>\r\n</ul>\r\nWhile processing fiberglass and glass','Boric Acid','','publish','open','closed','','boric-acid','','','2017-02-01 17:53:07','2017-02-01 17:53:07','',0,'http://manomaybiochem.com/?post_type=product&#038;p=127',0,'product','',0),(128,1,'2017-01-29 09:30:43','2017-01-29 09:30:43','Casein is a rich source of amino nitrogen, Casein protein hydrolysate is an excellent source of free amino acids and short peptide fragments, which are required by microorganisms for growth.\r\n\r\nOur range of protein hydrolysate of Casein is a hydrochloric acid hydrolysate of casein for use in preparing microbiological culture media.Free flowing, slightly hygroscopic, spray dried powder derived from high quality casein. It is a pale yellow to light brown colored soluble powder.Protect from moisture and light by keeping container tightly closed','Casein Protein Hydrolysate','Casein is a rich source of amino nitrogen, Casein protein hydrolysate is an excellent source of free amino acids and short peptide fragments, which are required by microorganisms for growth.','publish','open','closed','','casein-protein-hydrolysate','','','2017-01-29 09:31:04','2017-01-29 09:31:04','',0,'http://manomaybiochem.com/?post_type=product&#038;p=128',0,'product','',0),(129,1,'2017-01-29 09:30:29','2017-01-29 09:30:29','','','','inherit','open','closed','','casein','','','2017-01-29 09:30:39','2017-01-29 09:30:39','',128,'http://manomaybiochem.com/wp-content/uploads/2017/01/Casein.jpg',0,'attachment','image/jpeg',0),(130,1,'2017-01-29 09:33:23','2017-01-29 09:33:23','Our clients can avail Caustic Soda Flakes that is used for manufacturing dyes and pharmaceuticals. Our products are appreciated for their purity, accurate composition and precise pH value.','Caustic Soda','Our clients can avail Caustic Soda Flakes that is used for manufacturing dyes and pharmaceuticals. Our products are appreciated for their purity, accurate composition and precise pH value.','publish','open','closed','','caustic-soda','','','2017-02-01 17:54:07','2017-02-01 17:54:07','',0,'http://manomaybiochem.com/?post_type=product&#038;p=130',0,'product','',0),(131,1,'2017-01-29 09:35:12','2017-01-29 09:35:12','Backed with cutting edge technology, we are engaged in offering fragrances for a quality range of Cinnamon Oil. Our range of product is hygienically processed using natural active ingredients and is yellowish to brown color liquid. We offer this cinnamon oil at affordable prices to our respected customers and as per their needs and demands in order to satisfy them.','Cinnamon Oil','Backed with cutting edge technology, we are engaged in offering fragrances for a quality range of Cinnamon Oil. Our range of product is hygienically processed using natural active ingredients and is yellowish to brown color liquid. We offer this cinnamon oil at affordable prices to our respected customers and as per their needs and demands in order to satisfy them.','publish','open','closed','','cinnamon-oil','','','2017-01-29 09:35:12','2017-01-29 09:35:12','',0,'http://manomaybiochem.com/?post_type=product&#038;p=131',0,'product','',0),(132,1,'2017-01-29 09:34:50','2017-01-29 09:34:50','','Cinnamon Oil','','inherit','open','closed','','cinnamon-oil','','','2017-01-29 09:34:50','2017-01-29 09:34:50','',131,'http://manomaybiochem.com/wp-content/uploads/2017/01/Cinnamon-Oil.jpg',0,'attachment','image/jpeg',0),(133,1,'2017-01-29 09:37:30','2017-01-29 09:37:30','It occurs naturally in citrus fruits. Its quality and purity are the main factors upon which we do not compromise at any cost.\r\n\r\nIt is used widely as an acidifier, as a flavoring and chelating agent.  It is used as an odorless alternative to white vinegar for home dyeing with acid dyes. Citric acid can be used in food coloringto balance the pH level of a normally basic dye.','Citric Acid','It occurs naturally in citrus fruits. Its quality and purity are the main factors upon which we do not compromise at any cost.\r\n\r\nIt is used widely as an acidifier, as a flavoring and chelating agent.  It is used as an odorless alternative to white vinegar for home dyeing with acid dyes. Citric acid can be used in food coloringto balance the pH level of a normally basic dye.','publish','open','closed','','citric-acid','','','2017-02-01 17:55:19','2017-02-01 17:55:19','',0,'http://manomaybiochem.com/?post_type=product&#038;p=133',0,'product','',0),(134,1,'2017-01-29 09:41:30','2017-01-29 09:41:30','Our strong domain expertise enables us to produce a finest quality range of citronella oil, which is extracted from a natural herb called as citronella grass. This vital product range finds its utilization in diverse industries for manufacturing perfumes and detergents.\r\n\r\nWe are also equipped with all essential resources to offer a customizing in our product range as per client specifications and requirements','Citronella Oil','Our strong domain expertise enables us to produce a finest quality range of citronella oil, which is extracted from a natural herb called as citronella grass. This vital product range finds its utilization in diverse industries for manufacturing perfumes and detergents.','publish','open','closed','','citronella-oil','','','2017-01-29 09:41:30','2017-01-29 09:41:30','',0,'http://manomaybiochem.com/?post_type=product&#038;p=134',0,'product','',0),(135,1,'2017-01-29 09:41:18','2017-01-29 09:41:18','','Citronella Oil','','inherit','open','closed','','citronella-oil','','','2017-01-29 09:41:18','2017-01-29 09:41:18','',134,'http://manomaybiochem.com/wp-content/uploads/2017/01/Citronella-Oil.jpg',0,'attachment','image/jpeg',0),(136,1,'2017-01-29 09:44:25','2017-01-29 09:44:25','We provide clove oil, which is famous among the valued clients for its premium quality. These are extracted with high standard steam distillation technique. Our clove bud oil is very much accepted by the customers all across the globe due to their exclusive quality.\r\n\r\nIt is use in cosmetics, pharma, health care and mass','Clove Oil','We provide clove oil, which is famous among the valued clients for its premium quality. These are extracted with high standard steam distillation technique. Our clove bud oil is very much accepted by the customers all across the globe due to their exclusive quality.\r\n\r\nIt is use in cosmetics, pharma, health care and mass','publish','open','closed','','clove-oil','','','2017-01-29 09:44:25','2017-01-29 09:44:25','',0,'http://manomaybiochem.com/?post_type=product&#038;p=136',0,'product','',0),(137,1,'2017-01-29 09:44:11','2017-01-29 09:44:11','','Clove Oil','','inherit','open','closed','','clove-oil','','','2017-01-29 09:44:11','2017-01-29 09:44:11','',136,'http://manomaybiochem.com/wp-content/uploads/2017/01/Clove-Oil.jpg',0,'attachment','image/jpeg',0),(138,1,'2017-01-29 09:44:29','2017-01-29 09:44:29','We provide clove oil, which is famous among the valued clients for its premium quality. These are extracted with high standard steam distillation technique. Our clove bud oil is very much accepted by the customers all across the globe due to their exclusive quality.\n\nIt is use in cosmetics, pharma, health care and mass','Clove Oil','We provide clove oil, which is famous among the valued clients for its premium quality. These are extracted with high standard steam distillation technique. Our clove bud oil is very much accepted by the customers all across the globe due to their exclusive quality.\n\nIt is use in cosmetics, pharma, health care and mass','inherit','closed','closed','','136-autosave-v1','','','2017-01-29 09:44:29','2017-01-29 09:44:29','',136,'http://manomaybiochem.com/136-autosave-v1/',0,'revision','',0),(139,1,'2017-01-29 09:54:57','2017-01-29 09:54:57','We are a reliable Exporter, and Supplier of <strong>Copper Sulphate</strong>in Maharashtra, India.\r\n\r\nFrom chemical composition to chemical &amp; physical stability, we strive to define the chemical by the desirable attributes. Plus, its unadulterated state combined with high effectiveness makes the chemical rule the roost of the market.\r\n\r\nTo avail Copper Sulphate enclosed in quality packages and in bulk quantity.\r\n\r\n&nbsp;\r\n\r\n<strong>Application</strong>\r\n<ul>\r\n	<li>Copper sulphate is a very versatile chemical with uses in industry.</li>\r\n	<li>In poultry feed supplements.</li>\r\n	<li>In copper coating of wires.</li>\r\n	<li>As a mordant for dyeing and for electroplating.</li>\r\n	<li>The metal industry uses large quantities of copper sulphate as an electrolyte in copper refining, for copper coating steel wire prior to wire drawing and in various copper plating processes.</li>\r\n	<li>Agriculture.</li>\r\n	<li>As an etching agent for process engraving.</li>\r\n</ul>\r\nThe paint industry uses it in anti-fouling paints','Copper Sulphate','We are a reliable Exporter, and Supplier of <strong>Copper Sulphate</strong>in Maharashtra, India.\r\n\r\nFrom chemical composition to chemical &amp; physical stability, we strive to define the chemical by the desirable attributes. Plus, its unadulterated state combined with high effectiveness makes the chemical rule the roost of the market.','publish','open','closed','','copper-sulphate','','','2017-01-29 09:54:57','2017-01-29 09:54:57','',0,'http://manomaybiochem.com/?post_type=product&#038;p=139',0,'product','',0),(140,1,'2017-01-29 09:53:57','2017-01-29 09:53:57','','Copper Sulphate','','inherit','open','closed','','copper-sulphate','','','2017-01-29 09:53:57','2017-01-29 09:53:57','',139,'http://manomaybiochem.com/wp-content/uploads/2017/01/Copper-Sulphate.jpg',0,'attachment','image/jpeg',0),(141,1,'2017-01-29 09:58:26','2017-01-29 09:58:26','We offer dimethyl formamide that is very commonly used as solvent with low evaporation rate. It is able to penetrate plastic to make them swell. This feature makes it ideal for peptide synthesis. It is also employed in near infrared spectroscopy.\r\n\r\nIt is also used in production of solvent dyes as basic raw material. It is used for safe storage of industrial acetylene gas. Our clients can avail it leading industry rates.','Dimethyl Formamide','We offer dimethyl formamide that is very commonly used as solvent with low evaporation rate. It is able to penetrate plastic to make them swell. This feature makes it ideal for peptide synthesis. It is also employed in near infrared spectroscopy.\r\n\r\nIt is also used in production of solvent dyes as basic raw material. It is used for safe storage of industrial acetylene gas. Our clients can avail it leading industry rates.','publish','open','closed','','dimethyl-formamide','','','2017-01-29 09:58:26','2017-01-29 09:58:26','',0,'http://manomaybiochem.com/?post_type=product&#038;p=141',0,'product','',0),(142,1,'2017-01-29 09:56:02','2017-01-29 09:56:02','We are a reliable Exporter, and Supplier of <strong>Copper Sulphate</strong>in Maharashtra, India.\n\nFrom chemical composition to chemical &amp; physical stability, we strive to define the chemical by the desirable attributes. Plus, its unadulterated state combined with high effectiveness makes the chemical rule the roost of the market.\n\nTo avail Copper Sulphate enclosed in quality packages and in bulk quantity.\n\n&nbsp;\n\n<strong>Application</strong>\n<ul>\n	<li>Copper sulphate is a very versatile chemical with uses in industry.</li>\n	<li>In poultry feed supplements.</li>\n	<li>In copper coating of wires.</li>\n	<li>As a mordant for dyeing and for electroplating.</li>\n	<li>The metal industry uses large quantities of copper sulphate as an electrolyte in copper refining, for copper coating steel wire prior to wire drawing and in various copper plating processes.</li>\n	<li>Agriculture.</li>\n	<li>As an etching agent for process engraving.</li>\n</ul>\nThe paint industry uses it in anti-fouling paints','Copper Sulphate','<p>We are a reliable Exporter, and Supplier of <strong>Copper Sulphate</strong>in Maharashtra, India.</p><p>From chemical composition to chemical &amp; physical stability, we strive to define the chemical by the desirable attributes. Plus, its unadulterated state combined with high effectiveness makes the chemical rule the roost of the market.</p>','inherit','closed','closed','','139-autosave-v1','','','2017-01-29 09:56:02','2017-01-29 09:56:02','',139,'http://manomaybiochem.com/139-autosave-v1/',0,'revision','',0),(143,1,'2017-01-29 09:58:17','2017-01-29 09:58:17','','Dimethyl Formamide','','inherit','open','closed','','dimethyl-formamide','','','2017-01-29 09:58:17','2017-01-29 09:58:17','',141,'http://manomaybiochem.com/wp-content/uploads/2017/01/Dimethyl-Formamide.jpg',0,'attachment','image/jpeg',0),(144,1,'2017-01-29 10:00:31','2017-01-29 10:00:31','DMSO is a highly dipolar organic liquid, that is used as a powerful solvent in organic synthesis and industrial applications including paint stripper and coating remover as the alternative to chlorinated solvents and nitroalkanes.\r\n\r\nDMSO is high polarity solvates polymeric materials by itself or in combination with other solvents.It is widely used in the synthesis of pharmaceuticals, biocides and pesticides insecticides as a reactant, reaction solvent, in combinations of these applications.','Dimethyl Sulfoxide','DMSO is a highly dipolar organic liquid, that is used as a powerful solvent in organic synthesis and industrial applications including paint stripper and coating remover as the alternative to chlorinated solvents and nitroalkanes.','publish','open','closed','','dimethyl-sulfoxide','','','2017-02-01 17:56:28','2017-02-01 17:56:28','',0,'http://manomaybiochem.com/?post_type=product&#038;p=144',0,'product','',0),(145,1,'2017-01-29 10:02:05','2017-01-29 10:02:05','Fish protein hydrolysate in its simplest form , is ground up fish into a liquid phase where cleavage of natural bonds can be enacted through various biological processes. Raw material choice of whole fish or by products is made pending the commercial outlets for the fish.\r\n\r\nThe guts, bones, cartilage, scales and meat of fish is put in to water and ground up producing fish protein hydrolysate.','Fish Protein Hydrolysate','Fish protein hydrolysate in its simplest form , is ground up fish into a liquid phase where cleavage of natural bonds can be enacted through various biological processes. Raw material choice of whole fish or by products is made pending the commercial outlets for the fish.\r\n\r\nThe guts, bones, cartilage, scales and meat of fish is put in to water and ground up producing fish protein hydrolysate.','publish','open','closed','','fish-protein-hydrolysate','','','2017-01-29 10:02:05','2017-01-29 10:02:05','',0,'http://manomaybiochem.com/?post_type=product&#038;p=145',0,'product','',0),(146,1,'2017-01-29 10:01:56','2017-01-29 10:01:56','','Fish Protein Hydrolysate','','inherit','open','closed','','fish-protein-hydrolysate','','','2017-01-29 10:01:56','2017-01-29 10:01:56','',145,'http://manomaybiochem.com/wp-content/uploads/2017/01/Fish-Protein-Hydrolysate.jpg',0,'attachment','image/jpeg',0),(147,1,'2017-01-29 10:05:21','2017-01-29 10:05:21','Garlic is a perennial plant in the family Alliaceae and genus Allium, closely related to the onion, shallot, and leek. It does not grow in the wild, and is thought to have arisen in cultivation, probably descended from the species Allium longicuspis, which grows wild in south-western Asia.\r\n\r\nGarlic Oil is mainly used for treating fungal infections, warts, and corns. Owing to its high effectiveness and longer shelf life, the oil is widely demanded by our customers','Garlic Oil','Garlic is a perennial plant in the family Alliaceae and genus Allium, closely related to the onion, shallot, and leek. It does not grow in the wild, and is thought to have arisen in cultivation, probably descended from the species Allium longicuspis, which grows wild in south-western Asia.\r\n\r\n&nbsp;','publish','open','closed','','garlic-oil','','','2017-01-29 10:05:21','2017-01-29 10:05:21','',0,'http://manomaybiochem.com/?post_type=product&#038;p=147',0,'product','',0),(148,1,'2017-01-29 10:05:10','2017-01-29 10:05:10','','Garlic Oil','','inherit','open','closed','','garlic-oil','','','2017-01-29 10:05:10','2017-01-29 10:05:10','',147,'http://manomaybiochem.com/wp-content/uploads/2017/01/Garlic-Oil.png',0,'attachment','image/png',0),(149,1,'2017-01-29 10:09:05','2017-01-29 10:09:05','It is extracted by steam distillation of the roots, and has a spicy and peppery aroma. It is native to Asia. It is used for digestion, colds, coughs, circulation, headaches, intestinal parasites, dyspepsia, diarrhoea, mood upliftment and as a fragrant component','Ginger Oil','It is extracted by steam distillation of the roots, and has a spicy and peppery aroma. It is native to Asia. It is used for digestion, colds, coughs, circulation, headaches, intestinal parasites, dyspepsia, diarrhoea, mood upliftment and as a fragrant component','publish','open','closed','','ginger-oil','','','2017-01-29 10:09:05','2017-01-29 10:09:05','',0,'http://manomaybiochem.com/?post_type=product&#038;p=149',0,'product','',0),(150,1,'2017-01-29 10:08:54','2017-01-29 10:08:54','','Ginger Oil','','inherit','open','closed','','ginger-oil','','','2017-01-29 10:08:54','2017-01-29 10:08:54','',149,'http://manomaybiochem.com/wp-content/uploads/2017/01/Ginger-Oil.jpg',0,'attachment','image/jpeg',0),(151,1,'2017-01-29 10:10:19','2017-01-29 10:10:19','We are engaged in offering a wide range of glacial acetic acid,It is Highly corrosive in nature, the range is ideally a clear liquid with a pungent odour.Classified under weak acids, the range is formulated hygienically under controlled conditions and is treated with an organic compound.It is widely used in textile,food&amp; general industrial uses.','Glacial Acetic Acid','We are engaged in offering a wide range of glacial acetic acid,It is Highly corrosive in nature, the range is ideally a clear liquid with a pungent odour.Classified under weak acids, the range is formulated hygienically under controlled conditions and is treated with an organic compound.It is widely used in textile,food&amp; general industrial uses.','publish','open','closed','','glacial-acetic-acid','','','2017-01-29 10:10:19','2017-01-29 10:10:19','',0,'http://manomaybiochem.com/?post_type=product&#038;p=151',0,'product','',0),(152,1,'2017-01-29 10:10:10','2017-01-29 10:10:10','','Glacial Acetic Acid','','inherit','open','closed','','glacial-acetic-acid','','','2017-01-29 10:10:10','2017-01-29 10:10:10','',151,'http://manomaybiochem.com/wp-content/uploads/2017/01/Glacial-Acetic-Acid.png',0,'attachment','image/png',0),(153,1,'2017-01-29 10:25:05','2017-01-29 10:25:05','Hydrogen peroxide is extremely versatile in industry as well as an ever expanding environmental cleanup and remediation area.While high concentrations of hydrogen peroxide are used in the wood pulp, paper and milling industries as a bleaching agent, they are also well represented in the caustics of chemical baths for everything from chain metal production to epoxy and polymer product manufacture.\r\n\r\nHydrogen Peroxide that works as an antiseptic and disinfectant.From municipal wastewater and drinking water treatments to gas, oil and petrochemical refinery applications hydrogen peroxide is playing a major role in the modern industrial world.','Hydrogen Peroxide','Hydrogen peroxide is extremely versatile in industry as well as an ever expanding environmental cleanup and remediation area.While high concentrations of hydrogen peroxide are used in the wood pulp, paper and milling industries as a bleaching agent, they are also well represented in the caustics of chemical baths for everything from chain metal production to epoxy and polymer product manufacture.','publish','open','closed','','hydrogen-peroxide','','','2017-01-29 10:25:05','2017-01-29 10:25:05','',0,'http://manomaybiochem.com/?post_type=product&#038;p=153',0,'product','',0),(154,1,'2017-01-29 10:12:16','2017-01-29 10:12:16','','Hydrogen Peroxide','','inherit','open','closed','','hydrogen-peroxide','','','2017-01-29 10:12:16','2017-01-29 10:12:16','',153,'http://manomaybiochem.com/wp-content/uploads/2017/01/Hydrogen-Peroxide.jpg',0,'attachment','image/jpeg',0),(155,1,'2017-01-29 10:27:00','2017-01-29 10:27:00','It is a colorless, flammable chemical compound with a strong odor.It is a radical scavenger that terminates radical polymerization reactions and serves as an antioxidant in natural rubber.\r\n\r\nIt is also a starting material for some insecticides, herbicides and growth regulators.Isopropyl alcohol is produced by combining water and propene','Iso Propyl Alcohol','It is a colorless, flammable chemical compound with a strong odor.It is a radical scavenger that terminates radical polymerization reactions and serves as an antioxidant in natural rubber.','publish','open','closed','','iso-propyl-alcohol','','','2017-01-29 10:27:00','2017-01-29 10:27:00','',0,'http://manomaybiochem.com/?post_type=product&#038;p=155',0,'product','',0),(156,1,'2017-01-29 10:26:54','2017-01-29 10:26:54','','Iso Propyl Alcohol','','inherit','open','closed','','iso-propyl-alcohol','','','2017-01-29 10:26:54','2017-01-29 10:26:54','',155,'http://manomaybiochem.com/wp-content/uploads/2017/01/Iso-Propyl-Alcohol.jpg',0,'attachment','image/jpeg',0),(157,1,'2017-01-29 10:28:27','2017-01-29 10:28:27','We deal in retail and bulk quantities of Karanj Oil. Karanj Oil is widely used in making Pesticides. Karanj Oil\'s pest repellent and pesticidal properties make its way to be used in various industrial and domestic sectors as pesticides.This oil is non-toxic and non-sensitizing in nature and is running high in demand as it is cost effective','Karanj Oil','We deal in retail and bulk quantities of Karanj Oil. Karanj Oil is widely used in making Pesticides. Karanj Oil\'s pest repellent and pesticidal properties make its way to be used in various industrial and domestic sectors as pesticides.This oil is non-toxic and non-sensitizing in nature and is running high in demand as it is cost effective','publish','open','closed','','karanj-oil','','','2017-01-29 10:28:27','2017-01-29 10:28:27','',0,'http://manomaybiochem.com/?post_type=product&#038;p=157',0,'product','',0),(158,1,'2017-01-29 10:28:02','2017-01-29 10:28:02','','Karanja Oil','','inherit','open','closed','','karanja-oil','','','2017-01-29 10:28:02','2017-01-29 10:28:02','',157,'http://manomaybiochem.com/wp-content/uploads/2017/01/Karanja-Oil.jpg',0,'attachment','image/jpeg',0),(159,1,'2017-01-29 10:31:25','2017-01-29 10:31:25','We owned the name of a trusted brand which processes and supplies a pure range of lemon Oils. We extract these oils from natural resources which contribute for their high demand among our clients.\r\n\r\nWe further use cutting edge technology to crown these with flawless features which includes purity, free from chemicals and pleasant fragrant.It is used in pharma&amp; perfumery industry','Lemon Oil','We owned the name of a trusted brand which processes and supplies a pure range of lemon Oils. We extract these oils from natural resources which contribute for their high demand among our clients.','publish','open','closed','','lemon-oil','','','2017-01-29 10:31:25','2017-01-29 10:31:25','',0,'http://manomaybiochem.com/?post_type=product&#038;p=159',0,'product','',0),(160,1,'2017-01-29 10:31:16','2017-01-29 10:31:16','','Lemon Oil','','inherit','open','closed','','lemon-oil','','','2017-01-29 10:31:16','2017-01-29 10:31:16','',159,'http://manomaybiochem.com/wp-content/uploads/2017/01/Lemon-Oil.jpg',0,'attachment','image/jpeg',0),(161,1,'2017-01-29 10:36:42','2017-01-29 10:36:42','Liquor ammonia is basically ammonia dissolved in water with a high pungent fishy odor. The chemical is widely used in varied industries as an acid neutralizer. Processed in accordance with the industrial standards and norms.\r\n\r\nThe liquor ammonia is wisely offered in the market in air tight containers for zero leakage in the environment.\r\n\r\n<strong>APPLICATIONS </strong>\r\n\r\nAcidity regulator in food industry.\r\n\r\nAs an ingredient in cleaning agent.','Liquor Ammonia','Liquor ammonia is basically ammonia dissolved in water with a high pungent fishy odor. The chemical is widely used in varied industries as an acid neutralizer. Processed in accordance with the industrial standards and norms.','publish','open','closed','','liquor-ammonia','','','2017-01-29 10:36:42','2017-01-29 10:36:42','',0,'http://manomaybiochem.com/?post_type=product&#038;p=161',0,'product','',0),(162,1,'2017-01-29 10:33:40','2017-01-29 10:33:40','','Liquor Ammonia','','inherit','open','closed','','liquor-ammonia','','','2017-01-29 10:33:40','2017-01-29 10:33:40','',161,'http://manomaybiochem.com/wp-content/uploads/2017/01/Liquor-Ammonia.jpeg',0,'attachment','image/jpeg',0),(163,1,'2017-01-29 10:38:04','2017-01-29 10:38:04','We are a bulk manufacturer, supplier and exporter of Liver Extract Paste. Liver extract paste is delivered from particular division of hamburger liver. Liver extract paste serves as a great wellspring of proteins.\r\n\r\nIt is relied upon for biochemical studies, particularly fermentation reactions because of its independence from fermentable substances. It is widely used in culture media &amp; has been used extensively in the manufacture of toxins, vaccines &amp; other biological products.','Liver Extract Paste','We are a bulk manufacturer, supplier and exporter of Liver Extract Paste. Liver extract paste is delivered from particular division of hamburger liver. Liver extract paste serves as a great wellspring of proteins.','publish','open','closed','','liver-extract-paste','','','2017-01-29 10:38:04','2017-01-29 10:38:04','',0,'http://manomaybiochem.com/?post_type=product&#038;p=163',0,'product','',0),(164,1,'2017-01-29 10:37:56','2017-01-29 10:37:56','','Liver Extract Paste','','inherit','open','closed','','liver-extract-paste','','','2017-01-29 10:37:56','2017-01-29 10:37:56','',163,'http://manomaybiochem.com/wp-content/uploads/2017/01/Liver-Extract-Paste.jpg',0,'attachment','image/jpeg',0),(165,1,'2017-01-29 10:39:18','2017-01-29 10:39:18','We are a bulk manufacturer, supplier and exporter of Liver Extract Paste. Liver extract paste is delivered from particular division of hamburger liver. Liver extract paste serves as a great wellspring of proteins.\r\n\r\nIt is relied upon for biochemical studies, particularly fermentation reactions because of its independence from fermentable substances. It is widely used in culture media &amp; has been used extensively in the manufacture of toxins, vaccines &amp; other biological products','Liver Extract Powder','We are a bulk manufacturer, supplier and exporter of Liver Extract Paste. Liver extract paste is delivered from particular division of hamburger liver. Liver extract paste serves as a great wellspring of proteins.','publish','open','closed','','liver-extract-powder','','','2017-01-29 10:39:18','2017-01-29 10:39:18','',0,'http://manomaybiochem.com/?post_type=product&#038;p=165',0,'product','',0),(166,1,'2017-01-29 10:39:10','2017-01-29 10:39:10','','Liver Extract Powder','','inherit','open','closed','','liver-extract-powder','','','2017-01-29 10:39:10','2017-01-29 10:39:10','',165,'http://manomaybiochem.com/wp-content/uploads/2017/01/Liver-Extract-Powder.jpg',0,'attachment','image/jpeg',0),(167,1,'2017-01-29 10:43:18','2017-01-29 10:43:18','We are top exporter  and supplying and range of Basic Malachite Green Powder is traditionally used as a dye for materials such as silk, wool, fabric, leather, and paper. is used as a dyestuff and controversially as an antimicrobial in aquaculture.\r\n\r\nThese are brilliant and most fluorescent among all synthetic dyes.Malachite Green is also quite effective in controlling fungus on fish eggs.\r\n\r\nBasic Malachite Green are cationic which has positive electrical charge and are used for anionic fabrics which gives bright dying is the prime consideration.','Malachite Green','We are top exporter  and supplying and range of Basic Malachite Green Powder is traditionally used as a dye for materials such as silk, wool, fabric, leather, and paper. is used as a dyestuff and controversially as an antimicrobial in aquaculture.\r\n\r\nThese are brilliant and most fluorescent among all synthetic dyes.Malachite Green is also quite effective in controlling fungus on fish eggs.\r\n\r\nBasic Malachite Green are cationic which has positive electrical charge and are used for anionic fabrics which gives bright dying is the prime consideration.','publish','open','closed','','malachite-green','','','2017-01-29 10:43:18','2017-01-29 10:43:18','',0,'http://manomaybiochem.com/?post_type=product&#038;p=167',0,'product','',0),(170,1,'2017-01-29 10:43:10','2017-01-29 10:43:10','','Malachite Green','','inherit','open','closed','','malachite-green','','','2017-01-29 10:43:10','2017-01-29 10:43:10','',167,'http://manomaybiochem.com/wp-content/uploads/2017/01/Malachite-Green.jpg',0,'attachment','image/jpeg',0),(171,1,'2017-01-29 10:45:00','2017-01-29 10:45:00','We are ranked among reputed Exporters and Suppliers of <strong>Malic Acid</strong> in Maharashtra, India. Our company is engaged in providing superior-grade, fresh and pure Malic Acid at market leading prices.\r\n\r\nBuyers can rest assured; our Malic Acid is highly potent and compositionally balanced. We make it available in bulk and provide customized packaging solutions as well.\r\n\r\nWe provide Malic Acid in chemical grade packaging.','Malic Acid','We are ranked among reputed Exporters and Suppliers of <strong>Malic Acid</strong> in Maharashtra, India. Our company is engaged in providing superior-grade, fresh and pure Malic Acid at market leading prices.\r\n\r\n&nbsp;','publish','open','closed','','malic-acid','','','2017-01-29 10:45:00','2017-01-29 10:45:00','',0,'http://manomaybiochem.com/?post_type=product&#038;p=171',0,'product','',0),(172,1,'2017-01-29 10:44:49','2017-01-29 10:44:49','','Malic Acid','','inherit','open','closed','','malic-acid','','','2017-01-29 10:44:49','2017-01-29 10:44:49','',171,'http://manomaybiochem.com/wp-content/uploads/2017/01/Malic-Acid.jpg',0,'attachment','image/jpeg',0),(173,1,'2017-01-29 10:48:20','2017-01-29 10:48:20','These are processed using selected meat under hygienic conditions. It is available in light brown color and rich in vitamins.\r\n\r\nWe offered Meat Extract Paste and Meat Extract Powder. It is easily soluble in water and forms a clear light yellow solution.','Meat Extract powder','These are processed using selected meat under hygienic conditions. It is available in light brown color and rich in vitamins.','publish','open','closed','','meat-extract-powder','','','2017-02-01 17:58:17','2017-02-01 17:58:17','',0,'http://manomaybiochem.com/?post_type=product&#038;p=173',0,'product','',0),(174,1,'2017-01-30 00:04:26','2017-01-30 00:04:26','Silver hydrogen peroxide is to be used for multiple applications to soil fumigation, disinfect air, water and surface. It is a biodegradable disinfectant that finds its use comfort and flexibility to disinfect almost anything.\r\n\r\nSilver hydrogen peroxide finds a wide range of disinfecting applications in fields of agriculture, food and beverage, hospitals and other institutions, etc. Infection control in OT, to treating powdery mildew and other stubborn fungal diseases, Silver Hydrogen Peroxide is one hassle free solution to all','Nano Silver Hydrogen Peroxide','Silver hydrogen peroxide is to be used for multiple applications to soil fumigation, disinfect air, water and surface. It is a biodegradable disinfectant that finds its use comfort and flexibility to disinfect almost anything.','publish','open','closed','','nano-silver-hydrogen-peroxide','','','2017-01-30 00:28:07','2017-01-30 00:28:07','',0,'http://manomaybiochem.com/?post_type=product&#038;p=174',0,'product','',0),(175,1,'2017-01-30 00:06:06','2017-01-30 00:06:06','We are offering a wide range of exporter  &amp; supplier neem oil. Provided neem oil has countless number of potent ingredients that aid in health and beauty care. Our offered neem oil is processed using supreme class ingredients in proper ratio by advance techniques.\r\n\r\nThis neem oil is used externally on the skin for a variety of problems and is also used to treat rheumatism.\r\n\r\n<strong>Application </strong>\r\n\r\nNeem oil is most useful in our home remedy.\r\n\r\nEach house must have one bottle of Neem oil at home.\r\n\r\nNeem oil is very good wound healer.\r\n\r\nNeem oil can be used for insect bite, drandruff, itching.\r\n\r\nIt can be applied in non healing. Psoriasis, oozing eczema, dermatitis and in many skin diseases it is used.\r\n\r\nNeem oil is used as a pesticide.','Neem Oil','We are offering a wide range of exporter  &amp; supplier neem oil. Provided neem oil has countless number of potent ingredients that aid in health and beauty care. Our offered neem oil is processed using supreme class ingredients in proper ratio by advance techniques.','publish','open','closed','','neem-oil','','','2017-01-30 00:06:06','2017-01-30 00:06:06','',0,'http://manomaybiochem.com/?post_type=product&#038;p=175',0,'product','',0),(176,1,'2017-01-30 00:05:33','2017-01-30 00:05:33','','Neem Oil','','inherit','open','closed','','neem-oil','','','2017-01-30 00:05:33','2017-01-30 00:05:33','',175,'http://manomaybiochem.com/wp-content/uploads/2017/01/Neem-Oil.jpg',0,'attachment','image/jpeg',0),(177,1,'2017-01-30 00:07:54','2017-01-30 00:07:54','We are counted as one of the leading manufacturers and suppliers of Nitrobenzene Chemical. For the purpose of preventing fruits and flowers from pre dropping from the plant, the offered nitrobenzene is used in various agricultural applications.\r\n\r\nIt is solubility in water, diethyl ether, methanol and acetone Solubility: soluble in diethyl ether, acetone and methanol slightly soluble in cold water.','Nitrobenzene','We are counted as one of the leading manufacturers and suppliers of Nitrobenzene Chemical. For the purpose of preventing fruits and flowers from pre dropping from the plant, the offered nitrobenzene is used in various agricultural applications.','publish','open','closed','','nitrobenzene','','','2017-01-30 00:07:54','2017-01-30 00:07:54','',0,'http://manomaybiochem.com/?post_type=product&#038;p=177',0,'product','',0),(178,1,'2017-01-30 00:07:42','2017-01-30 00:07:42','','Nitrobenzene','','inherit','open','closed','','nitrobenzene','','','2017-01-30 00:07:42','2017-01-30 00:07:42','',177,'http://manomaybiochem.com/wp-content/uploads/2017/01/Nitrobenzene.jpg',0,'attachment','image/jpeg',0),(179,1,'2017-01-30 00:12:44','2017-01-30 00:12:44','We owned the name of a trusted brand which processes and supplies a pure range of pine oils. We extract these oils from natural resources which contribute for their high demand among our clients.\r\n\r\nWe further use cutting edge technology to crown these with flawless features which includes purity, free from chemicals and pleasant fragrant.','Pine Oil','We owned the name of a trusted brand which processes and supplies a pure range of pine oils. We extract these oils from natural resources which contribute for their high demand among our clients.\r\n\r\nWe further use cutting edge technology to crown these with flawless features which includes purity, free from chemicals and pleasant fragrant.','publish','open','closed','','pine-oil','','','2017-01-30 00:12:44','2017-01-30 00:12:44','',0,'http://manomaybiochem.com/?post_type=product&#038;p=179',0,'product','',0),(180,1,'2017-01-30 00:12:35','2017-01-30 00:12:35','','Pine Oil','','inherit','open','closed','','pine-oil','','','2017-01-30 00:12:35','2017-01-30 00:12:35','',179,'http://manomaybiochem.com/wp-content/uploads/2017/01/Pine-Oil.jpg',0,'attachment','image/jpeg',0),(181,1,'2017-01-30 00:14:20','2017-01-30 00:14:20','They can be used to either stabilize,or to initiate flocculations (precipitation).They can also be used to impart a surface charge to neutral particles, enabling them to be dispersed in aqueous solution.\r\n\r\nThey are used in water treatments and for oil recovery. Many soaps, shampoos, and cosmetics incorporate poly electrolytes.it is Used in a variety of materials, including cement','Polyelectrolyte Anionic Powder','They can be used to either stabilize,or to initiate flocculations (precipitation).They can also be used to impart a surface charge to neutral particles, enabling them to be dispersed in aqueous solution.','publish','open','closed','','polyelectrolyte-anionic-powder','','','2017-01-30 00:14:20','2017-01-30 00:14:20','',0,'http://manomaybiochem.com/?post_type=product&#038;p=181',0,'product','',0),(182,1,'2017-01-30 00:14:09','2017-01-30 00:14:09','','Polyelectrolyte Powder','','inherit','open','closed','','polyelectrolyte-powder','','','2017-01-30 00:14:09','2017-01-30 00:14:09','',181,'http://manomaybiochem.com/wp-content/uploads/2017/01/Polyelectrolyte-Powder.jpg',0,'attachment','image/jpeg',0),(183,1,'2017-01-30 00:16:15','2017-01-30 00:16:15','They are used in water treatments and for oil recovery. Many soaps, shampoos, and cosmetics incorporate poly electrolytes.It is related to modifying flow and stability properties of aqueous solutions and gels.','Polyelectrolyte Cationic Powder','They are used in water treatments and for oil recovery. Many soaps, shampoos, and cosmetics incorporate poly electrolytes.It is related to modifying flow and stability properties of aqueous solutions and gels.','publish','open','closed','','polyelectrolyte-cationic-powder','','','2017-01-30 00:16:15','2017-01-30 00:16:15','',0,'http://manomaybiochem.com/?post_type=product&#038;p=183',0,'product','',0),(184,1,'2017-01-30 00:17:55','2017-01-30 00:17:55','We are a leading  supplier&amp; exporter of Polyethylene Glycols such as Polyethylene Glycol 200, Polyethylene Glycol 300, Polyethylene Glycol 400, Polyethylene Glycols 600, Polyethylene Glycol 1000, Polyethylene Glycol 1500 and all type of PEG available.','Polyethylene Glycol (PEG)','We are a leading  supplier&amp; exporter of Polyethylene Glycols such as Polyethylene Glycol 200, Polyethylene Glycol 300, Polyethylene Glycol 400, Polyethylene Glycols 600, Polyethylene Glycol 1000, Polyethylene Glycol 1500 and all type of PEG available.','publish','open','closed','','polyethylene-glycol-peg','','','2017-01-30 00:17:55','2017-01-30 00:17:55','',0,'http://manomaybiochem.com/?post_type=product&#038;p=184',0,'product','',0),(185,1,'2017-01-30 00:17:29','2017-01-30 00:17:29','','Polyethylene Glycol PEG','','inherit','open','closed','','polyethylene-glycol-peg','','','2017-01-30 00:17:29','2017-01-30 00:17:29','',184,'http://manomaybiochem.com/wp-content/uploads/2017/01/Polyethylene-Glycol-PEG.jpg',0,'attachment','image/jpeg',0),(186,1,'2017-01-30 00:19:25','2017-01-30 00:19:25','<strong>Potassium silicate powder</strong>  is a source of highly soluble potassium and silicon ions. It is used in agriculture. Potassium Silicate Powder forms is easily available to the plant via irrigation or foliar application.\r\n\r\nIt controls fungal disease. Silicon is also essential micronutrients for plant health.','Potassium Silicate','<strong>Potassium silicate powder</strong>  is a source of highly soluble potassium and silicon ions. It is used in agriculture. Potassium Silicate Powder forms is easily available to the plant via irrigation or foliar application.\r\n\r\nIt controls fungal disease. Silicon is also essential micronutrients for plant health.','publish','open','closed','','potassium-silicate','','','2017-01-30 00:19:25','2017-01-30 00:19:25','',0,'http://manomaybiochem.com/?post_type=product&#038;p=186',0,'product','',0),(187,1,'2017-01-30 00:19:17','2017-01-30 00:19:17','','Potassium Silicate','','inherit','open','closed','','potassium-silicate','','','2017-01-30 00:19:17','2017-01-30 00:19:17','',186,'http://manomaybiochem.com/wp-content/uploads/2017/01/Potassium-Silicate.jpg',0,'attachment','image/jpeg',0),(188,1,'2017-01-30 00:25:43','2017-01-30 00:25:43','The production of precipitated silica starts with the reaction of an alkaline silicate solution with a mineral acid. Sulfuric acid and sodium silicate solutions are added simultaneously with agitation to water. Precipitation is carried out under alkaline conditions.\r\n\r\nThe choice of agitation, duration of precipitation, the addition rate of reactants, their temperature and concentration, and pH can vary the properties of the silica. The formation of a gel stage is avoided by stirring at elevated temperatures.\r\n\r\nThe resulting white precipitate is filtered, washed and dried in the manufacturing process.\r\n\r\n&nbsp;\r\n\r\n<strong>APPLICATIONS </strong>\r\n<table width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Rubber Rice Rollers / Conveyor Belts</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Oral Health Applications / Creams</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Footwear / Railway Pads</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Paint</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Free Flow Salt / Powdered Mixes / Food Premixes / Talcum Powder\r\n\r\nTyres</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Detergents / Laundry</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Paints &amp; Coatings / Inks &amp; Toners</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Defoaming / Matting agents</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Cosmetics</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Pharmaceuticals</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Silicone Rubber</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Plastics</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Animal &amp; Poultry Feed</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Condoms</td>\r\n</tr>\r\n<tr>\r\n<td width=\"6%\"></td>\r\n<td width=\"91%\">Anticaking Agent &amp; Free Flow</td>\r\n</tr>\r\n</tbody>\r\n</table>','Precipitated Silica','','publish','open','closed','','precipitated-silica','','','2017-01-30 00:25:43','2017-01-30 00:25:43','',0,'http://manomaybiochem.com/?post_type=product&#038;p=188',0,'product','',0),(189,1,'2017-01-30 00:25:36','2017-01-30 00:25:36','','Precipitated Silica','','inherit','open','closed','','precipitated-silica','','','2017-01-30 00:25:36','2017-01-30 00:25:36','',188,'http://manomaybiochem.com/wp-content/uploads/2017/01/Precipitated-Silica.jpg',0,'attachment','image/jpeg',0),(264,1,'2017-05-26 10:21:33','2017-05-26 10:21:33','Floating fish feed high quality and best protein contein is 28%, 30%, 32% , the industry to provide our prestigious clients an exclusive range of Floting Fish Feed.\r\n\r\n<strong>Features:</strong>\r\n• No harmful preservatives\r\n• Good nutrition value\r\n• Easy to digest','Floating Fish Feed','','publish','open','closed','','floating-fish-feed','','','2017-05-26 10:21:33','2017-05-26 10:21:33','',0,'http://manomaybiochem.com/?post_type=product&#038;p=264',0,'product','',0),(191,1,'2017-01-30 00:28:01','2017-01-30 00:28:01','','Silver Hydrogen Peroxide','','inherit','open','closed','','silver-hydrogen-peroxide','','','2017-01-30 00:28:01','2017-01-30 00:28:01','',174,'http://manomaybiochem.com/wp-content/uploads/2017/01/Silver-Hydrogen-Peroxide.jpg',0,'attachment','image/jpeg',0),(192,1,'2017-01-30 00:29:34','2017-01-30 00:29:34','We are offering a wide range ofSodium Benzoate.The offered sodium benzoate is processed according to the market norms by utilizing best grade chemical compounds in accurate composition.\r\n\r\nApart from this, we offer this sodium benzoate in number of packaging options with different stipulations at affordable rates.It is used as food preservative and soft drink products','Sodium Benzoate','We are offering a wide range ofSodium Benzoate.The offered sodium benzoate is processed according to the market norms by utilizing best grade chemical compounds in accurate composition.','publish','open','closed','','sodium-benzoate','','','2017-01-30 00:29:34','2017-01-30 00:29:34','',0,'http://manomaybiochem.com/?post_type=product&#038;p=192',0,'product','',0),(193,1,'2017-01-30 00:29:01','2017-01-30 00:29:01','','Sodium Benzoate','','inherit','open','closed','','sodium-benzoate','','','2017-01-30 00:29:01','2017-01-30 00:29:01','',192,'http://manomaybiochem.com/wp-content/uploads/2017/01/Sodium-Benzoate.jpg',0,'attachment','image/jpeg',0),(194,1,'2017-01-30 00:32:08','2017-01-30 00:32:08','We are named among the renowned Exporters and Suppliers of Sodium Metabisulphite. We deal in <strong>Sodium Metabisulphite</strong>that is tested utilizing appropriate techniques under the strict vigilance of experts.\r\n\r\nIt is used as a disinfectant, antioxidant and preservative agent.Sodium metabisulphite and potassium metabisulphite are the primary ingredients in Campden tablets, used for wine and beer making.\r\n\r\nIt is used as a bleaching agent in the production of Coconut cream. It is used as a cleaning agent for potable water reverse osmosis membranes in desalination systems.\r\n\r\nIt can be obtained from us at a very reasonable price.','Sodium Metabisuphite','We are named among the renowned Exporters and Suppliers of Sodium Metabisulphite. We deal in <strong>Sodium Metabisulphite</strong>that is tested utilizing appropriate techniques under the strict vigilance of experts.\r\n\r\nIt is used as a disinfectant, antioxidant and preservative agent.Sodium metabisulphite and potassium metabisulphite are the primary ingredients in Campden tablets, used for wine and beer making.','publish','open','closed','','sodium-metabisuphite','','','2017-01-30 00:32:08','2017-01-30 00:32:08','',0,'http://manomaybiochem.com/?post_type=product&#038;p=194',0,'product','',0),(195,1,'2017-01-30 00:31:56','2017-01-30 00:31:56','','Sodium Metabisulphite','','inherit','open','closed','','sodium-metabisulphite','','','2017-01-30 00:31:56','2017-01-30 00:31:56','',194,'http://manomaybiochem.com/wp-content/uploads/2017/01/Sodium-Metabisulphite.jpg',0,'attachment','image/jpeg',0),(196,1,'2017-01-30 00:36:23','2017-01-30 00:36:23','We are the Distributor of Sodium Sulphate. It is a white crystalline solid, anhydrous product, which is widely used in chemicals and detergents. Our sodium sulphate is made of qualitative ingredients to ensure safety and effective use at customer\'s end. It is available with us at reasonable prices. It is extensively used in industries.','Sodium Sulphate','We are the Distributor of Sodium Sulphate. It is a white crystalline solid, anhydrous product, which is widely used in chemicals and detergents. Our sodium sulphate is made of qualitative ingredients to ensure safety and effective use at customer\'s end. It is available with us at reasonable prices. It is extensively used in industries.','publish','open','closed','','sodium-sulphate','','','2017-01-30 00:36:23','2017-01-30 00:36:23','',0,'http://manomaybiochem.com/?post_type=product&#038;p=196',0,'product','',0),(197,1,'2017-01-30 00:36:15','2017-01-30 00:36:15','','Sodium Benzoate','','inherit','open','closed','','sodium-benzoate-2','','','2017-01-30 00:36:15','2017-01-30 00:36:15','',196,'http://manomaybiochem.com/wp-content/uploads/2017/01/Sodium-Benzoate-1.jpg',0,'attachment','image/jpeg',0),(198,1,'2017-01-30 00:38:08','2017-01-30 00:38:08','Soya peptone is manufactured by a controlled enzymatic hydrolysis of soya.Soya Peptone GMO-free, animal-free is a specially designed product, Soy peptone is a papaic digest of defatted soybean meal.\r\n\r\nIt is an excellent source of vitamins and carbohydrates.It is development components suggested very in media for particular diagnostic microbiology and modern maturation.','Soya Peptone','Soya peptone is manufactured by a controlled enzymatic hydrolysis of soya.Soya Peptone GMO-free, animal-free is a specially designed product, Soy peptone is a papaic digest of defatted soybean meal.\r\n\r\nIt is an excellent source of vitamins and carbohydrates.It is development components suggested very in media for particular diagnostic microbiology and modern maturation.','publish','open','closed','','soya-peptone','','','2017-01-30 00:38:08','2017-01-30 00:38:08','',0,'http://manomaybiochem.com/?post_type=product&#038;p=198',0,'product','',0),(199,1,'2017-01-30 00:37:57','2017-01-30 00:37:57','','Soya Peptone Powder','','inherit','open','closed','','soya-peptone-powder','','','2017-01-30 00:37:57','2017-01-30 00:37:57','',198,'http://manomaybiochem.com/wp-content/uploads/2017/01/Soya-Peptone-Powder.jpg',0,'attachment','image/jpeg',0),(200,1,'2017-01-30 00:39:49','2017-01-30 00:39:49','Widely appreciated for its excellent quality, <strong>Streptomycin Sulphate</strong>is made from high quality chemicals using hi-tech machinery. In compliance with international set standards, we export and supply premium Streptomycin Sulphate for our esteemed buyers.\r\n\r\nStreptomycin Sulphate is stringently tested on various parameters, to ensure its quality before supplying. Available at affordable prices, Streptomycin Sulphate is packed using high grade packaging techniques. We are known for always delivering all orders on time.','Streptomycin Sulphate','Widely appreciated for its excellent quality, <strong>Streptomycin Sulphate</strong>is made from high quality chemicals using hi-tech machinery. In compliance with international set standards, we export and supply premium Streptomycin Sulphate for our esteemed buyers.','publish','open','closed','','streptomycin-sulphate','','','2017-01-30 00:39:49','2017-01-30 00:39:49','',0,'http://manomaybiochem.com/?post_type=product&#038;p=200',0,'product','',0),(201,1,'2017-01-30 00:39:42','2017-01-30 00:39:42','','Streptomycin Sulphate','','inherit','open','closed','','streptomycin-sulphate','','','2017-01-30 00:39:42','2017-01-30 00:39:42','',200,'http://manomaybiochem.com/wp-content/uploads/2017/01/Streptomycin-Sulphate.png',0,'attachment','image/png',0),(202,1,'2017-01-30 00:41:21','2017-01-30 00:41:21','Sulphamic acid, also known as amidosulfonic acid, amidosulfuric acid, aminosulfonicacid.It is a molecular compound with the formula H<sub>3</sub>NSO<sub>3</sub>. Sulfamic acid is used as an acidic cleaning agent, sometimes pure or as a component of proprietary mixtures, typically for metals and ceramics.\r\n\r\nIt is frequently used for removingrust and limescale, replacing the more volatile and irritating hydrochloric acid, which is however cheaper.','Sulphamic Acid','Sulphamic acid, also known as amidosulfonic acid, amidosulfuric acid, aminosulfonicacid.It is a molecular compound with the formula H<sub>3</sub>NSO<sub>3</sub>. Sulfamic acid is used as an acidic cleaning agent, sometimes pure or as a component of proprietary mixtures, typically for metals and ceramics.','publish','open','closed','','sulphamic-acid','','','2017-01-30 00:41:21','2017-01-30 00:41:21','',0,'http://manomaybiochem.com/?post_type=product&#038;p=202',0,'product','',0),(203,1,'2017-01-30 00:41:09','2017-01-30 00:41:09','','Sulphamic Acid','','inherit','open','closed','','sulphamic-acid','','','2017-01-30 00:41:09','2017-01-30 00:41:09','',202,'http://manomaybiochem.com/wp-content/uploads/2017/01/Sulphamic-Acid.jpg',0,'attachment','image/jpeg',0),(204,1,'2017-01-30 00:42:43','2017-01-30 00:42:43','Buyers can avail themselves of <strong>Tetracycline HCL</strong> of optimum quality from us! We are grouped with the top-notch Manufacturers, Exporters, and Suppliers of Tetracycline HCL from Maharashtra, India.\r\n\r\nThe product is formulated by experts and further tested for accuracy and efficacy. Tetracycline HCL is offered in the state that is freed from impurities','Tetracycline HCL','Buyers can avail themselves of <strong>Tetracycline HCL</strong> of optimum quality from us! We are grouped with the top-notch Manufacturers, Exporters, and Suppliers of Tetracycline HCL from Maharashtra, India.\r\n\r\nThe product is formulated by experts and further tested for accuracy and efficacy. Tetracycline HCL is offered in the state that is freed from impurities','publish','open','closed','','tetracycline-hcl','','','2017-01-30 00:42:43','2017-01-30 00:42:43','',0,'http://manomaybiochem.com/?post_type=product&#038;p=204',0,'product','',0),(205,1,'2017-01-30 00:42:34','2017-01-30 00:42:34','','Tetracycline HCL','','inherit','open','closed','','tetracycline-hcl','','','2017-01-30 00:42:34','2017-01-30 00:42:34','',204,'http://manomaybiochem.com/wp-content/uploads/2017/01/Tetracycline-HCL.jpg',0,'attachment','image/jpeg',0),(206,1,'2017-01-30 00:44:05','2017-01-30 00:44:05','We offer rich range of titanium dioxide to our esteemed clients.These products are test with various parameters to check the quality of the chemical and offers reliable performance.\r\n\r\nThese are used every day to test with different chemicals in laboratories and industries. These products are available in the market easily and are high in demand for their unique features','Titanium Dioxide','We offer rich range of titanium dioxide to our esteemed clients.These products are test with various parameters to check the quality of the chemical and offers reliable performance.\r\n\r\nThese are used every day to test with different chemicals in laboratories and industries. These products are available in the market easily and are high in demand for their unique features','publish','open','closed','','titanium-dioxide','','','2017-01-30 00:44:05','2017-01-30 00:44:05','',0,'http://manomaybiochem.com/?post_type=product&#038;p=206',0,'product','',0),(207,1,'2017-01-30 00:43:51','2017-01-30 00:43:51','','Titanium Dioxide','','inherit','open','closed','','titanium-dioxide','','','2017-01-30 00:43:51','2017-01-30 00:43:51','',206,'http://manomaybiochem.com/wp-content/uploads/2017/01/Titanium-Dioxide.jpg',0,'attachment','image/jpeg',0),(208,1,'2017-01-30 00:45:12','2017-01-30 00:45:12','We are bulk manufacturer ofTryptonePowder.Which are immensely used for the cultivation of various types of fastidious , such as bacteria and fungi. Under controlled and hygienic condition, this powder is prepared by enzymatic digestion process using high grade casein.\r\n\r\nThe powder is yellow in color and completely soluble in water.Once opened and recapped, place container in a low humidity environment at the same storage temperature. Protect from moisture and light by keeping container tightly closed.','Tryptone Powder','We are bulk manufacturer ofTryptonePowder.Which are immensely used for the cultivation of various types of fastidious , such as bacteria and fungi. Under controlled and hygienic condition, this powder is prepared by enzymatic digestion process using high grade casein.','publish','open','closed','','tryptone-powder','','','2017-01-30 00:45:12','2017-01-30 00:45:12','',0,'http://manomaybiochem.com/?post_type=product&#038;p=208',0,'product','',0),(209,1,'2017-01-30 00:45:07','2017-01-30 00:45:07','','Tryptone Powder','','inherit','open','closed','','tryptone-powder','','','2017-01-30 00:45:07','2017-01-30 00:45:07','',208,'http://manomaybiochem.com/wp-content/uploads/2017/01/Tryptone-Powder.jpg',0,'attachment','image/jpeg',0),(211,1,'2017-01-30 00:46:33','2017-01-30 00:46:33','We have earned a good reputation as an efficient Manufacturer, Exporter and Supplier of Vitamin AD3 in tune with international standards of quality.\r\n\r\nTo ensure Vitamin AD3 quality and purity, our quality analysis team performs a series of test against various parameters.','Vitamin AD3','We have earned a good reputation as an efficient Manufacturer, Exporter and Supplier of Vitamin AD3 in tune with international standards of quality.\r\n\r\nTo ensure Vitamin AD3 quality and purity, our quality analysis team performs a series of test against various parameters.','publish','open','closed','','vitamin-ad3','','','2017-01-30 00:46:33','2017-01-30 00:46:33','',0,'http://manomaybiochem.com/?post_type=product&#038;p=211',0,'product','',0),(212,1,'2017-01-30 00:46:24','2017-01-30 00:46:24','','Vitamin AD3','','inherit','open','closed','','vitamin-ad3','','','2017-01-30 00:46:24','2017-01-30 00:46:24','',211,'http://manomaybiochem.com/wp-content/uploads/2017/01/Vitamin-AD3.jpg',0,'attachment','image/jpeg',0),(213,1,'2017-01-30 00:47:05','2017-01-30 00:47:05','Vitamin C','Vitamin C','','inherit','closed','closed','','36-autosave-v1','','','2017-01-30 00:47:05','2017-01-30 00:47:05','',36,'http://manomaybiochem.com/36-autosave-v1/',0,'revision','',0),(214,1,'2017-01-30 00:48:56','2017-01-30 00:48:56','We are an established Manufacturer, Supplier and Exporter of Xanthan Gum from Maharashtra. Special care is taken about the packaging of the Xanthan Gum before the final dispatch.\r\n\r\nWidely used as a food additive, our <strong>Xanthan Gum</strong>is easily soluble.Xanthan gum is also used in gluten-free baking.\r\n\r\nThe entire range of the is reasonably priced by us.','Xanthan Gum','We are an established Manufacturer, Supplier and Exporter of Xanthan Gum from Maharashtra. Special care is taken about the packaging of the Xanthan Gum before the final dispatch.\r\n\r\nWidely used as a food additive, our <strong>Xanthan Gum</strong>is easily soluble.Xanthan gum is also used in gluten-free baking.\r\n\r\nThe entire range of the is reasonably priced by us.','publish','open','closed','','xanthan-gum','','','2017-01-30 00:48:56','2017-01-30 00:48:56','',0,'http://manomaybiochem.com/?post_type=product&#038;p=214',0,'product','',0),(215,1,'2017-01-30 00:48:49','2017-01-30 00:48:49','','Xanthan Gum','Xanthan gum in a small bowl','inherit','open','closed','','xanthan-gum','','','2017-01-30 00:48:49','2017-01-30 00:48:49','',214,'http://manomaybiochem.com/wp-content/uploads/2017/01/Xanthan-Gum.jpg',0,'attachment','image/jpeg',0),(216,1,'2017-01-30 00:52:28','2017-01-30 00:52:28','Zinc oxide appears white in color and is insoluble in water. Zinc oxide is known for inorganic compound and which is there in earth surface in the form of mineral.\r\n\r\nIt is used in different applications like plastic, ceramics, glass, cement, rubber, lubricants, paints ointments, adhesives, sealants etc. These are available in different quantity with perfect packaging','Zinc Oxide','Zinc oxide appears white in color and is insoluble in water. Zinc oxide is known for inorganic compound and which is there in earth surface in the form of mineral.\r\n\r\nIt is used in different applications like plastic, ceramics, glass, cement, rubber, lubricants, paints ointments, adhesives, sealants etc. These are available in different quantity with perfect packaging','publish','open','closed','','zinc-oxide','','','2017-01-30 00:52:28','2017-01-30 00:52:28','',0,'http://manomaybiochem.com/?post_type=product&#038;p=216',0,'product','',0),(222,1,'2017-02-01 17:50:11','2017-02-01 17:50:11','','Borax','','inherit','open','closed','','borax-2','','','2017-02-01 17:50:11','2017-02-01 17:50:11','',126,'http://manomaybiochem.com/wp-content/uploads/2017/01/Borax.jpg',0,'attachment','image/jpeg',0),(223,1,'2017-02-01 17:52:57','2017-02-01 17:52:57','','Boric Acid','','inherit','open','closed','','boric-acid-2','','','2017-02-01 17:52:57','2017-02-01 17:52:57','',127,'http://manomaybiochem.com/wp-content/uploads/2017/01/Boric-Acid.jpg',0,'attachment','image/jpeg',0),(224,1,'2017-02-01 17:53:57','2017-02-01 17:53:57','','Caustic Soda','','inherit','open','closed','','caustic-soda-2','','','2017-02-01 17:53:57','2017-02-01 17:53:57','',130,'http://manomaybiochem.com/wp-content/uploads/2017/01/Caustic-Soda.jpg',0,'attachment','image/jpeg',0),(225,1,'2017-02-01 17:55:10','2017-02-01 17:55:10','','Citric Acid','','inherit','open','closed','','citric-acid-2','','','2017-02-01 17:55:10','2017-02-01 17:55:10','',133,'http://manomaybiochem.com/wp-content/uploads/2017/01/Citric-Acid.jpg',0,'attachment','image/jpeg',0),(226,1,'2017-02-01 17:56:16','2017-02-01 17:56:16','','Dimethyl Sulfoxide','','inherit','open','closed','','dimethyl-sulfoxide-2','','','2017-02-01 17:56:16','2017-02-01 17:56:16','',144,'http://manomaybiochem.com/wp-content/uploads/2017/01/Dimethyl-Sulfoxide.jpg',0,'attachment','image/jpeg',0),(227,1,'2017-02-01 17:58:07','2017-02-01 17:58:07','','Meat Extract Powder','','inherit','open','closed','','meat-extract-powder-2','','','2017-02-01 17:58:07','2017-02-01 17:58:07','',173,'http://manomaybiochem.com/wp-content/uploads/2017/01/Meat-Extract-Powder.jpg',0,'attachment','image/jpeg',0),(228,1,'2017-02-01 17:59:18','2017-02-01 17:59:18','','Methylene Blue','','inherit','open','closed','','methylene-blue-3','','','2017-02-01 17:59:18','2017-02-01 17:59:18','',35,'http://manomaybiochem.com/wp-content/uploads/2016/06/Methylene-Blue.jpg',0,'attachment','image/jpeg',0),(232,1,'2017-02-14 02:28:39','2017-02-14 02:28:39','It is a colourless crystalline solid and a simple aromatic carboxylic acid.Benzoic acid is an ingredient in cosmetic products, dyes and insect repellents. Because of benzoic acid\'s anti-fungal nature, it acts as a preservative in these products by inhibiting the growth of mould, yeast and bacteria.\r\n\r\nIn personal care products, it is found in mouthwash, toothpaste, powder, lipstick and facial cleanser.','Benzoic Acid','It is a colourless crystalline solid and a simple aromatic carboxylic acid.Benzoic acid is an ingredient in cosmetic products, dyes and insect repellents. Because of benzoic acid\'s anti-fungal nature, it acts as a preservative in these products by inhibiting the growth of mould, yeast and bacteria.','publish','open','closed','','benzoic-acid','','','2017-02-14 02:28:39','2017-02-14 02:28:39','',0,'http://manomaybiochem.com/?post_type=product&#038;p=232',0,'product','',0),(233,1,'2017-02-14 02:28:09','2017-02-14 02:28:09','','Benzoic Acid','','inherit','open','closed','','benzoic-acid','','','2017-02-14 02:28:09','2017-02-14 02:28:09','',232,'http://manomaybiochem.com/wp-content/uploads/2017/02/Benzoic-Acid.jpg',0,'attachment','image/jpeg',0),(234,1,'2017-02-14 02:30:10','2017-02-14 02:30:10','Bile extract powder is consist ox, bile acid which is manufactured by dehydration process in which temperature is to low which ensures a uniform product. It is in hygroscopic  nature, protect from direct sunlight','Bile Extract Powder','Bile extract powder is consist ox, bile acid which is manufactured by dehydration process in which temperature is to low which ensures a uniform product. It is in hygroscopic  nature, protect from direct sunlight','publish','open','closed','','bile-extract-powder','','','2017-02-14 02:33:37','2017-02-14 02:33:37','',0,'http://manomaybiochem.com/?post_type=product&#038;p=234',0,'product','',0),(235,1,'2017-02-14 02:29:58','2017-02-14 02:29:58','','Bile Extract Powder','','inherit','open','closed','','bile-extract-powder','','','2017-02-14 02:29:58','2017-02-14 02:29:58','',234,'http://manomaybiochem.com/wp-content/uploads/2017/02/Bile-Extract-Powder.jpg',0,'attachment','image/jpeg',0),(236,1,'2017-02-14 02:35:10','2017-02-14 02:35:10','Soluble in water and alcohol, almost shows neutral aqueous solution, insoluble in ether and petroleum ether, benzene and carbon disulfide. Tiny have fish foul smell, salty, bitter taste, easy to ChaoXie, in alkali solution is not stable','Choline Chloride','Soluble in water and alcohol, almost shows neutral aqueous solution, insoluble in ether and petroleum ether, benzene and carbon disulfide. Tiny have fish foul smell, salty, bitter taste, easy to ChaoXie, in alkali solution is not stable','publish','open','closed','','choline-chloride','','','2017-02-14 02:35:10','2017-02-14 02:35:10','',0,'http://manomaybiochem.com/?post_type=product&#038;p=236',0,'product','',0),(237,1,'2017-02-14 02:35:01','2017-02-14 02:35:01','','Choline Chloride','','inherit','open','closed','','choline-chloride','','','2017-02-14 02:35:01','2017-02-14 02:35:01','',236,'http://manomaybiochem.com/wp-content/uploads/2017/02/Choline-Chloride.jpg',0,'attachment','image/jpeg',0),(238,1,'2017-02-14 02:36:40','2017-02-14 02:36:40','DL-Methionine is frequently used in the feed industry to meet the requirements of target animals and fish, in order to maximize production performance and reduce nitrogen emission. It is the important source of methyl groups for synthesis of all nucleic acids, as well as the sulfur source for sulfonic compounds.\r\n\r\nUsually diets for piglets and growing pigs can show a considerable deficiency in Methionine, especially when formulated to achieve low nitrogen excretion for ecological reasons. Therefore, such a deficiency must be conveniently compensated for by adding DL-Methionine in animal diets.','DL Methionine','DL-Methionine is frequently used in the feed industry to meet the requirements of target animals and fish, in order to maximize production performance and reduce nitrogen emission. It is the important source of methyl groups for synthesis of all nucleic acids, as well as the sulfur source for sulfonic compounds.','publish','open','closed','','dl-methionine','','','2017-02-14 02:36:40','2017-02-14 02:36:40','',0,'http://manomaybiochem.com/?post_type=product&#038;p=238',0,'product','',0),(239,1,'2017-02-14 02:36:32','2017-02-14 02:36:32','','DL-Methionine','','inherit','open','closed','','dl-methionine','','','2017-02-14 02:36:32','2017-02-14 02:36:32','',238,'http://manomaybiochem.com/wp-content/uploads/2017/02/DL-Methionine.jpg',0,'attachment','image/jpeg',0),(240,1,'2017-02-14 02:37:57','2017-02-14 02:37:57','We are processing two categories offerrous sulphate, which are Ferrous Sulphate (Monohydrate/feed grade) and Ferrous Sulphate (heptahydrate),These are formulated with high quality raw material and ensure high effectiveness. These are supplied to varied industries such as ink manufacturing, paper industry, pharmacy industry, chemical industry and food industry','Ferrous Sulphate','We are processing two categories offerrous sulphate, which are Ferrous Sulphate (Monohydrate/feed grade) and Ferrous Sulphate (heptahydrate),These are formulated with high quality raw material and ensure high effectiveness. These are supplied to varied industries such as ink manufacturing, paper industry, pharmacy industry, chemical industry and food industry','publish','open','closed','','ferrous-sulphate','','','2017-02-14 02:37:57','2017-02-14 02:37:57','',0,'http://manomaybiochem.com/?post_type=product&#038;p=240',0,'product','',0),(241,1,'2017-02-14 02:37:47','2017-02-14 02:37:47','','Ferrous Sulphate','','inherit','open','closed','','ferrous-sulphate','','','2017-02-14 02:37:47','2017-02-14 02:37:47','',240,'http://manomaybiochem.com/wp-content/uploads/2017/02/Ferrous-Sulphate.jpg',0,'attachment','image/jpeg',0),(242,1,'2017-02-14 02:40:45','2017-02-14 02:40:45','Gentian violet is also known as Crystal violet. It has antibacterial, antifungal, and anthelmintic properties and was formerly important as a topical antiseptic.\r\n\r\nIt is used to dye paper and as a component of navy blue and black inks for printing, ball-point pens, and inkjet printers. It is also used to colourize diverse products such as fertilizers, antifreezes, detergents, and leather.','Gentian Violet','Gentian violet is also known as Crystal violet. It has antibacterial, antifungal, and anthelmintic properties and was formerly important as a topical antiseptic.','publish','open','closed','','gentian-violet','','','2017-02-14 02:40:45','2017-02-14 02:40:45','',0,'http://manomaybiochem.com/?post_type=product&#038;p=242',0,'product','',0),(243,1,'2017-02-14 02:39:23','2017-02-14 02:39:23','','Gelatin Powder','','inherit','open','closed','','gelatin-powder','','','2017-02-14 02:39:23','2017-02-14 02:39:23','',242,'http://manomaybiochem.com/wp-content/uploads/2017/02/Gelatin-Powder.jpg',0,'attachment','image/jpeg',0),(244,1,'2017-02-14 02:40:27','2017-02-14 02:40:27','','Gentian Violet','','inherit','open','closed','','gentian-violet','','','2017-02-14 02:40:27','2017-02-14 02:40:27','',242,'http://manomaybiochem.com/wp-content/uploads/2017/02/Gentian-Violet.jpg',0,'attachment','image/jpeg',0),(245,1,'2017-02-14 02:42:04','2017-02-14 02:42:04','Guar Gum is a natural high molecular weight hydrocolloidal polysaccharide composed of galactan and mannan units combined through glycosidic linkages, which may be described chemically as galactomannan.Dissolved in cold or hot water, guar gum forms a slime of high viscosity.\r\n\r\nGuar\'s viscosity is a function of temperature, time, and concentration.Solutions with different gum concentrations can be used as emulsifiers and stabilizers because they prevent oil droplets from coalescing. Guar gum is also used as suspension stabilizer','Guar Gum Powder','Guar Gum is a natural high molecular weight hydrocolloidal polysaccharide composed of galactan and mannan units combined through glycosidic linkages, which may be described chemically as galactomannan.Dissolved in cold or hot water, guar gum forms a slime of high viscosity.','publish','open','closed','','guar-gum-powder','','','2017-02-14 02:42:04','2017-02-14 02:42:04','',0,'http://manomaybiochem.com/?post_type=product&#038;p=245',0,'product','',0),(246,1,'2017-02-14 02:41:55','2017-02-14 02:41:55','','Guar Gum Powder','','inherit','open','closed','','guar-gum-powder','','','2017-02-14 02:41:55','2017-02-14 02:41:55','',245,'http://manomaybiochem.com/wp-content/uploads/2017/02/Guar-Gum-Powder.jpg',0,'attachment','image/jpeg',0),(247,1,'2017-02-14 02:43:50','2017-02-14 02:43:50','Mannan-oligosaccharide (MOS) based nutritional supplements are widely used in nutrition as a natural additive. It is used as aqua, pigs, poultry, pet feeds. MOS has been shown to improve gastrointestinal health as well as overall health, thus improving wellbeing, energy levels and performance improved gut health results in longer villi and thinner gastrointestinal membranes.\r\n\r\nMOS is included in diets for horses, dogs, cats, rabbits, aquaculture and birds by feed manufacturers, mainly due to its benefits for their health. MOS as a nutritional supplement offers a natural approach to support the microflora and thus improve overall health.','MannanOligo Saccharide','Mannan-oligosaccharide (MOS) based nutritional supplements are widely used in nutrition as a natural additive. It is used as aqua, pigs, poultry, pet feeds. MOS has been shown to improve gastrointestinal health as well as overall health, thus improving wellbeing, energy levels and performance improved gut health results in longer villi and thinner gastrointestinal membranes.','publish','open','closed','','mannanoligo-saccharide','','','2017-02-14 02:43:50','2017-02-14 02:43:50','',0,'http://manomaybiochem.com/?post_type=product&#038;p=247',0,'product','',0),(248,1,'2017-02-14 02:43:39','2017-02-14 02:43:39','','Mannan Oligo Saccharide (MOS)','','inherit','open','closed','','mannan-oligo-saccharide-mos','','','2017-02-14 02:43:39','2017-02-14 02:43:39','',247,'http://manomaybiochem.com/wp-content/uploads/2017/02/Mannan-Oligo-Saccharide-MOS.jpeg',0,'attachment','image/jpeg',0),(249,1,'2017-02-14 02:45:33','2017-02-14 02:45:33','It is also known as sugar replacer, bulk sweetener or sugar-free sweetener.Mannitol is also used in more conventional dosage forms like tablets, capsules where active need to be protected from humidity and degradation. Mannitol is used in cosmetic applications as a humectant but also in skin hydration formulations or skin care preparation','Mannitol','It is also known as sugar replacer, bulk sweetener or sugar-free sweetener.Mannitol is also used in more conventional dosage forms like tablets, capsules where active need to be protected from humidity and degradation. Mannitol is used in cosmetic applications as a humectant but also in skin hydration formulations or skin care preparation','publish','open','closed','','mannitol','','','2017-02-14 02:45:33','2017-02-14 02:45:33','',0,'http://manomaybiochem.com/?post_type=product&#038;p=249',0,'product','',0),(250,1,'2017-02-14 02:46:28','2017-02-14 02:46:28','It is also known as vitamin B<sub>3</sub> and nicotinic acid, is an organic compound. It can be found in many foods, including yeast, meat, fish, milk, eggs, green vegetables, and cereal grains.Niacin is widely distributed in feedstuffs of both plant and animal origin.\r\n\r\nAnimal and fish by-products, distiller’s grains and yeast, various distillation and fermentation soluble and certain oilseed meals are good sources.They are especially important in the metabolic reactions that furnish energy to the animals.','Niacin','It is also known as vitamin B<sub>3</sub> and nicotinic acid, is an organic compound. It can be found in many foods, including yeast, meat, fish, milk, eggs, green vegetables, and cereal grains.Niacin is widely distributed in feedstuffs of both plant and animal origin.','publish','open','closed','','niacin','','','2017-02-14 02:46:28','2017-02-14 02:46:28','',0,'http://manomaybiochem.com/?post_type=product&#038;p=250',0,'product','',0),(251,1,'2017-02-14 02:46:17','2017-02-14 02:46:17','','Niacin','','inherit','open','closed','','niacin','','','2017-02-14 02:46:17','2017-02-14 02:46:17','',250,'http://manomaybiochem.com/wp-content/uploads/2017/02/Niacin.jpg',0,'attachment','image/jpeg',0),(252,1,'2017-02-14 02:48:30','2017-02-14 02:48:30','Potassium sorbate is effective in a variety of applications including food and personal care products.It is primarily used as a food preservative,It is very soluble in water. It is used to inhibit moulds and yeasts in many foods, such as cheese, yogurt, dried meats, apple cider, soft drinks and fruit drinks, and baked goods.\r\n\r\nIt is used in many personal care products to inhibit the development of microorganisms for shelf stability.','Potassium Sorbate','Potassium sorbate is effective in a variety of applications including food and personal care products.It is primarily used as a food preservative,It is very soluble in water. It is used to inhibit moulds and yeasts in many foods, such as cheese, yogurt, dried meats, apple cider, soft drinks and fruit drinks, and baked goods.','publish','open','closed','','potassium-sorbate','','','2017-02-14 02:48:30','2017-02-14 02:48:30','',0,'http://manomaybiochem.com/?post_type=product&#038;p=252',0,'product','',0),(253,1,'2017-02-14 02:48:16','2017-02-14 02:48:16','','Potassium Sorbate','','inherit','open','closed','','potassium-sorbate','','','2017-02-14 02:48:16','2017-02-14 02:48:16','',252,'http://manomaybiochem.com/wp-content/uploads/2017/02/Potassium-Sorbate.jpg',0,'attachment','image/jpeg',0),(254,1,'2017-02-14 02:49:46','2017-02-14 02:49:46','We offer to our clients, high grade of Salicylic Acid. It is actively used in different industries for the formulations of other chemical compounds, Thisaccurately composed chemical compound have higher shelf life. It is made in compliance with the industry standards and is considered safe to use','Salicylic Acid','We offer to our clients, high grade of Salicylic Acid. It is actively used in different industries for the formulations of other chemical compounds, Thisaccurately composed chemical compound have higher shelf life. It is made in compliance with the industry standards and is considered safe to use','publish','open','closed','','salicylic-acid','','','2017-02-14 02:49:46','2017-02-14 02:49:46','',0,'http://manomaybiochem.com/?post_type=product&#038;p=254',0,'product','',0),(255,1,'2017-02-14 02:49:33','2017-02-14 02:49:33','','Salicylic Acid','','inherit','open','closed','','salicylic-acid','','','2017-02-14 02:49:33','2017-02-14 02:49:33','',254,'http://manomaybiochem.com/wp-content/uploads/2017/02/Salicylic-Acid.jpg',0,'attachment','image/jpeg',0),(256,1,'2017-02-14 02:51:25','2017-02-14 02:51:25','Sorbic acid is used as a mould and yeast inhibitor. Sorbic acid is used as fungistatic agent for foods, especially cheeses. It is used to improve the characteristics of drying oils, in alkyd type coatings to improve gloss, it is used to improve milling characteristics of cold rubber.\r\n\r\nIt is a colourless solid that is slightly soluble in water and sublimes readily.It is found in many other foods, such as cheeses and breads.','Sorbic Acid','Sorbic acid is used as a mould and yeast inhibitor. Sorbic acid is used as fungistatic agent for foods, especially cheeses. It is used to improve the characteristics of drying oils, in alkyd type coatings to improve gloss, it is used to improve milling characteristics of cold rubber.','publish','open','closed','','sorbic-acid','','','2017-02-14 02:51:25','2017-02-14 02:51:25','',0,'http://manomaybiochem.com/?post_type=product&#038;p=256',0,'product','',0),(257,1,'2017-02-14 02:51:13','2017-02-14 02:51:13','','Sorbic Acid','','inherit','open','closed','','sorbic-acid','','','2017-02-14 02:51:13','2017-02-14 02:51:13','',256,'http://manomaybiochem.com/wp-content/uploads/2017/02/Sorbic-Acid.jpg',0,'attachment','image/jpeg',0),(258,1,'2017-02-14 02:52:29','2017-02-14 02:52:29','Spirulina is a cyanobacterium that can be consumed by humans and other animals and is made primarily from two species of cyanobacteria arthrospiraplatensis and arthrospiramaxima.Protein content in Spirulina is higher than that of any other natural food source.\r\n\r\n&nbsp;\r\n\r\nSpirulina is a microalga that can be consumed by humans and animals.Spirulina is the immortal descendant of the first photosynthetic life form.It is usually taken by humans as a nutritional supplement','Spirulina Powder','Spirulina is a cyanobacterium that can be consumed by humans and other animals and is made primarily from two species of cyanobacteria arthrospiraplatensis and arthrospiramaxima.Protein content in Spirulina is higher than that of any other natural food source.','publish','open','closed','','spirulina-powder','','','2017-02-14 02:52:29','2017-02-14 02:52:29','',0,'http://manomaybiochem.com/?post_type=product&#038;p=258',0,'product','',0),(259,1,'2017-02-14 02:52:21','2017-02-14 02:52:21','','Spirulina Powder','','inherit','open','closed','','spirulina-powder','','','2017-02-14 02:52:21','2017-02-14 02:52:21','',258,'http://manomaybiochem.com/wp-content/uploads/2017/02/Spirulina-Powder.jpg',0,'attachment','image/jpeg',0),(261,1,'2017-02-20 05:49:25','2017-02-20 05:49:25','','images','','inherit','open','closed','','images','','','2017-02-20 05:49:25','2017-02-20 05:49:25','',0,'http://manomaybiochem.com/wp-content/uploads/2017/02/images.png',0,'attachment','image/png',0),(262,1,'2017-02-20 05:49:25','2017-02-20 05:49:25','','conf_fish_feed','','inherit','open','closed','','conf_fish_feed','','','2017-02-20 05:49:25','2017-02-20 05:49:25','',0,'http://manomaybiochem.com/wp-content/uploads/2017/02/conf_fish_feed.jpg',0,'attachment','image/jpeg',0),(265,1,'2017-05-26 10:20:16','2017-05-26 10:20:16','','','','inherit','open','closed','','fish-feed-1','','','2017-05-26 10:20:30','2017-05-26 10:20:30','',264,'http://manomaybiochem.com/wp-content/uploads/2017/05/FISH-FEED-1.jpg',0,'attachment','image/jpeg',0),(266,1,'2017-05-26 10:25:01','2017-05-26 10:25:01','We are a unique name in the industry to provide our prestigious clients an exclusive range of Fish Feed.\r\n\r\n<strong>Features:</strong>\r\n• No harmful preservatives\r\n• Good nutrition value\r\n• Easy to digest\r\n\r\n&nbsp;','Sinking Fish Feed','','publish','open','closed','','sinking-fish-feed','','','2017-05-26 10:25:10','2017-05-26 10:25:10','',0,'http://manomaybiochem.com/?post_type=product&#038;p=266',0,'product','',0),(267,1,'2017-05-26 10:24:49','2017-05-26 10:24:49','','','','inherit','open','closed','','fish-feed','','','2017-05-26 10:24:57','2017-05-26 10:24:57','',266,'http://manomaybiochem.com/wp-content/uploads/2017/05/FISH-FEED.jpg',0,'attachment','image/jpeg',0),(268,1,'2017-05-26 10:43:58','2017-05-26 10:43:58','','','','inherit','open','closed','','fish-pic-2','','','2017-05-26 10:44:05','2017-05-26 10:44:05','',0,'http://manomaybiochem.com/wp-content/uploads/2017/05/FISH-Pic-2.png',0,'attachment','image/png',0),(274,1,'2017-11-09 06:28:09','2017-11-09 06:28:09','','','','inherit','open','closed','','manomay-biochem-watermark','','','2017-11-09 06:28:16','2017-11-09 06:28:16','',0,'http://manomaybiochem.com/wp-content/uploads/2017/11/Manomay-Biochem-watermark.jpg',0,'attachment','image/jpeg',0),(275,1,'2017-11-09 06:59:05','2017-11-09 06:59:05','','Manomay-Biochem-1','','inherit','open','closed','','manomay-biochem-1','','','2017-11-09 06:59:05','2017-11-09 06:59:05','',0,'http://manomaybiochem.com/wp-content/uploads/2017/11/Manomay-Biochem-1.jpg',0,'attachment','image/jpeg',0),(276,1,'2017-11-09 07:04:55','2017-11-09 07:04:55','','Manomay-Biochem','','inherit','open','closed','','manomay-biochem-2','','','2017-11-09 07:04:55','2017-11-09 07:04:55','',0,'http://manomaybiochem.com/wp-content/uploads/2017/11/Manomay-Biochem.jpg',0,'attachment','image/jpeg',0),(277,1,'2017-11-09 07:07:35','2017-11-09 07:07:35','','Manomay-Biochem-3','','inherit','open','closed','','manomay-biochem-3','','','2017-11-09 07:07:35','2017-11-09 07:07:35','',0,'http://manomaybiochem.com/wp-content/uploads/2017/11/Manomay-Biochem-3.jpg',0,'attachment','image/jpeg',0),(286,1,'2018-10-13 11:07:00','2018-10-13 11:07:00','<strong>Crop protection</strong>\r\n<ul>\r\n 	<li>GLYPHOM is a herbicide of the glycine group used for selective broadleaf and grass weedscontrol in soybeans, peanuts and peas.</li>\r\n 	<li>GLYPHOM may be applied either pre-plant, pre-emergence or post-emergence.</li>\r\n 	<li>GLYPHOM is a systemic herbicide that is rapidly absorbed by the roots and the leaves and translocated to the epical meristem.</li>\r\n 	<li>GLYPHOM has a double action: residual andcontact  An early application of GLYPHOM will free the crop from competing weeds.</li>\r\n 	<li>GLYPHOM inhibits the synthesis of branched chain amino acids in susceptible plants, which in turn interferes in protein production and cells growth.</li>\r\n 	<li>Under field conditions, GLYPHOM mobility in soil is limited to the top 15 cm. There is no soil pH limitation for GLYPHOM application.</li>\r\n</ul>','GLYPHOM','','publish','open','closed','','glyphom','','','2018-10-13 11:18:38','2018-10-13 11:18:38','',0,'http://manomaybiochem.com/?post_type=product&#038;p=286',0,'product','',0),(287,1,'2018-10-13 11:06:51','2018-10-13 11:06:51','','Glyphom','','inherit','open','closed','','glyphom','','','2018-10-13 11:06:51','2018-10-13 11:06:51','',286,'http://manomaybiochem.com/wp-content/uploads/2018/10/Glyphom.jpg',0,'attachment','image/jpeg',0),(284,1,'2018-10-13 11:06:01','2018-10-13 11:06:01','<strong>Crop protection</strong>\r\n<ul>\r\n 	<li>MB 24D is a herbicide of the di-chlorophenoxyl group used for selective weed control in a wide range of fruit trees, vegetables, field crops, ornamentals, forestry, sugarcane and non-crop areas.</li>\r\n 	<li>MB 24D controls a wide spectrum of annual broadleaf and grass weeds. MB 24D  is used in pre-plant, pre-emergence and post-emergence applications.</li>\r\n 	<li>MB 24D has prolonged residual activity and shows negligible leaching.Minimal rain or irrigation is necessary to activate the residual effect.</li>\r\n</ul>','MB 24D','','publish','open','closed','','mb-24d','','','2018-10-13 11:18:34','2018-10-13 11:18:34','',0,'http://manomaybiochem.com/?post_type=product&#038;p=284',0,'product','',0),(285,1,'2018-10-13 11:05:46','2018-10-13 11:05:46','','MB-24D','','inherit','open','closed','','mb-24d','','','2018-10-13 11:05:46','2018-10-13 11:05:46','',284,'http://manomaybiochem.com/wp-content/uploads/2018/10/MB-24D.jpg',0,'attachment','image/jpeg',0),(288,1,'2018-10-13 11:16:35','2018-10-13 11:16:35','','Glyphom1','','inherit','open','closed','','glyphom1','','','2018-10-13 11:16:35','2018-10-13 11:16:35','',286,'http://manomaybiochem.com/wp-content/uploads/2018/10/Glyphom1.jpg',0,'attachment','image/jpeg',0),(289,1,'2018-10-13 11:16:37','2018-10-13 11:16:37','','MB-24D1','','inherit','open','closed','','mb-24d1','','','2018-10-13 11:16:37','2018-10-13 11:16:37','',286,'http://manomaybiochem.com/wp-content/uploads/2018/10/MB-24D1.jpg',0,'attachment','image/jpeg',0),(291,1,'2019-09-27 11:58:15','2019-09-27 11:58:15','','Papain Powder','Xanthan gum in a small bowl','inherit','open','closed','','papain-powder','','','2019-09-27 11:58:15','2019-09-27 11:58:15','',0,'http://manomaybiochem.com/wp-content/uploads/2019/09/Papain-Powder.jpg',0,'attachment','image/jpeg',0),(292,1,'2019-09-27 11:58:23','2019-09-27 11:58:23','','Papain Liquid','','inherit','open','closed','','papain-liquid','','','2019-09-27 11:58:23','2019-09-27 11:58:23','',0,'http://manomaybiochem.com/wp-content/uploads/2019/09/Papain-Liquid.jpg',0,'attachment','image/jpeg',0),(293,1,'2019-09-30 13:21:44','2019-09-30 13:21:44','<strong>PRODUCT INFORMATION :</strong>\r\n\r\nLiquid papain is a solution of proteolytic enzyme prepared from the latex of Papaya fruit. It is characterized by its ability to hydrolyse large proteins into peptides and amino acids.\r\n\r\n<strong>Application :</strong>\r\n<ul>\r\n 	<li>Cosmetic products.</li>\r\n 	<li>Meat Tenderizer.</li>\r\n 	<li>Pharma Digestive Aids &amp; other food supplements.</li>\r\n 	<li>Effluent Treatment to keep clean tank &amp; pipe odour free.</li>\r\n 	<li>Animal feed utilization and efficiencies.</li>\r\n</ul>\r\n&nbsp;','Papain Liquid','','publish','open','closed','','papain-liquid','','','2019-09-30 13:21:44','2019-09-30 13:21:44','',0,'http://manomaybiochem.com/?post_type=product&#038;p=293',0,'product','',0),(294,1,'2019-09-30 13:20:56','2019-09-30 13:20:56','','Papain Liquid','','inherit','open','closed','','papain-liquid-2','','','2019-09-30 13:20:56','2019-09-30 13:20:56','',293,'http://manomaybiochem.com/wp-content/uploads/2019/09/Papain-Liquid-1.jpg',0,'attachment','image/jpeg',0),(295,1,'2019-09-30 13:21:09','2019-09-30 13:21:09','','Papain Powder','','inherit','open','closed','','papain-powder-2','','','2019-09-30 13:26:36','2019-09-30 13:26:36','',293,'http://manomaybiochem.com/wp-content/uploads/2019/09/Papain-Powder-1.jpg',0,'attachment','image/jpeg',0),(296,1,'2019-09-30 13:26:40','2019-09-30 13:26:40','<strong>PRODUCT INFORMATION:</strong>\r\n\r\nThe enzyme Papain is obtained by latest filtration &amp; spry drying technology to get quality refine papain which dissolves easily in water to provide a solution of high proteolytic activity.\r\n\r\n<strong>Application :</strong>\r\n<ul>\r\n 	<li>Cosmetic products.</li>\r\n 	<li>Meat Tenderizer.</li>\r\n 	<li>Pharma Digestive Aids &amp; other food supplements.</li>\r\n 	<li>Effluent Treatment to keep clean tank &amp; pipe odour free.</li>\r\n 	<li>Animal feed utilization and efficiencies</li>\r\n</ul>','Papain Powder','','publish','open','closed','','papain-powder','','','2019-09-30 13:26:41','2019-09-30 13:26:41','',0,'http://manomaybiochem.com/?post_type=product&#038;p=296',0,'product','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(10,2,0),(11,6,0),(20,2,0),(19,2,0),(43,6,0),(18,2,0),(16,6,0),(21,2,0),(22,2,0),(23,2,0),(24,2,0),(25,2,0),(26,2,0),(27,2,0),(28,2,0),(29,2,0),(30,2,0),(31,2,0),(32,2,0),(35,2,0),(36,2,0),(37,2,0),(44,6,0),(45,6,0),(106,2,0),(108,2,0),(111,2,0),(114,2,0),(118,2,0),(118,9,0),(123,2,0),(125,2,0),(126,2,0),(127,2,0),(128,2,0),(130,2,0),(131,2,0),(133,2,0),(134,2,0),(136,2,0),(139,2,0),(141,2,0),(144,2,0),(145,2,0),(147,2,0),(149,2,0),(151,2,0),(153,2,0),(155,2,0),(157,2,0),(159,2,0),(161,2,0),(163,2,0),(165,2,0),(167,2,0),(171,2,0),(173,2,0),(174,2,0),(175,2,0),(177,2,0),(179,2,0),(181,2,0),(183,2,0),(184,2,0),(186,2,0),(188,2,0),(192,2,0),(194,2,0),(196,2,0),(198,2,0),(200,2,0),(202,2,0),(204,2,0),(206,2,0),(208,2,0),(211,2,0),(214,2,0),(216,2,0),(220,2,0),(35,9,0),(232,2,0),(234,2,0),(236,2,0),(238,2,0),(240,2,0),(242,2,0),(245,2,0),(247,2,0),(249,2,0),(250,2,0),(252,2,0),(254,2,0),(256,2,0),(258,2,0),(264,9,0),(264,2,0),(266,2,0),(266,9,0),(284,20,0),(284,2,0),(286,20,0),(286,2,0),(293,20,0),(293,2,0),(296,20,0),(296,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,90),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'nav_menu','',0,5),(7,7,'product_cat','',0,0),(8,8,'product_cat','',0,0),(9,9,'product_cat','',0,4),(10,10,'product_cat','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_visibility','',0,0),(16,16,'product_visibility','',0,0),(17,17,'product_visibility','',0,0),(18,18,'product_visibility','',0,0),(19,19,'product_visibility','',0,0),(20,20,'product_cat','',0,4);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,20,'product_count_product_cat','4');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'Menu 1','menu-1',0),(7,'Vitamin Supplements','vitamin-supplements',0),(8,'Nutraceuticals','nutraceuticals',0),(9,'Aqua Feed Supplements','aqua-feed-supplements',0),(10,'Industrial Chemicals','industrial-chemicals',0),(11,'exclude-from-search','exclude-from-search',0),(12,'exclude-from-catalog','exclude-from-catalog',0),(13,'featured','featured',0),(14,'outofstock','outofstock',0),(15,'rated-1','rated-1',0),(16,'rated-2','rated-2',0),(17,'rated-3','rated-3',0),(18,'rated-4','rated-4',0),(19,'rated-5','rated-5',0),(20,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=97 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp496_privacy'),(13,1,'show_welcome_panel','1'),(15,1,'wp_dashboard_quick_press_last_post_id','290'),(16,1,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(17,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(18,1,'wp_user-settings-time','1485736683'),(19,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(20,1,'metaboxhidden_nav-menus','a:6:{i:0;s:30:\"woocommerce_endpoints_nav_link\";i:1;s:21:\"add-post-type-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";}'),(21,1,'nav_menu_recently_edited','6'),(25,1,'_woocommerce_persistent_cart','a:1:{s:4:\"cart\";a:0:{}}'),(27,1,'closedpostboxes_product','a:1:{i:0;s:21:\"wc_email_inquiry_meta\";}'),(28,1,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}'),(42,1,'tgmpa_dismissed_notice_zerif-lite','1'),(58,1,'billing_last_name',''),(47,1,'aioseop_seen_about_page','2.3.11.4'),(56,1,'wp_media_library_mode','list'),(57,1,'billing_first_name',''),(59,1,'billing_company',''),(60,1,'billing_address_1',''),(61,1,'billing_address_2',''),(62,1,'billing_city',''),(63,1,'billing_postcode',''),(64,1,'billing_country',''),(65,1,'billing_state',''),(66,1,'billing_phone',''),(67,1,'billing_email',''),(68,1,'shipping_first_name',''),(69,1,'shipping_last_name',''),(70,1,'shipping_company',''),(71,1,'shipping_address_1',''),(72,1,'shipping_address_2',''),(73,1,'shipping_city',''),(74,1,'shipping_postcode',''),(75,1,'shipping_country',''),(76,1,'shipping_state',''),(77,1,'googleplus',''),(89,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(92,1,'wc_email_inquiry-wc_email_inquiry_global_settings','a:2:{i:0;s:35:\"wc_ei_show_email_inquiry_button_box\";i:1;s:22:\"wc_ei_default_form_box\";}'),(88,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"103.211.216.0\";}'),(90,1,'wc_email_inquiry-plugin_framework_global_box-opened','1'),(91,1,'wc_email_inquiry-wc_email_inquiry_rules_roles_settings','a:1:{i:0;s:26:\"wc_ei_hide_add_to_cart_box\";}'),(93,1,'wc_last_active','1569801600');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BuWZgFG7ShyMXzyqwuPWJ2gzZRvVgv.','admin','info@manomaybiochem.com','','2016-06-04 16:16:47','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_download_log`
--

DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_download_log`
--

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

--
-- Table structure for table `wp_wc_webhooks`
--

DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_webhooks`
--

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

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(191),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp_woocommerce_log`
--

DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_log`
--

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

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` longtext NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_sessions`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(191)),
  KEY `tax_rate_class` (`tax_rate_class`(191)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wp_woocommerce_termmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_termmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `woocommerce_term_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `woocommerce_term_id` (`woocommerce_term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_termmeta`
--

LOCK TABLES `wp_woocommerce_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_termmeta` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_termmeta` VALUES (1,7,'order','0'),(2,7,'display_type',''),(3,7,'thumbnail_id','0'),(4,8,'order','0'),(5,8,'display_type',''),(6,8,'thumbnail_id','0'),(7,9,'order','0'),(8,9,'display_type',''),(9,9,'thumbnail_id','0'),(10,10,'order','0'),(11,10,'display_type',''),(12,10,'thumbnail_id','0'),(13,9,'product_count_product_cat','4');
/*!40000 ALTER TABLE `wp_woocommerce_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2020-07-17 14:24:57