0byt3m1n1
Path:
/
data
/
25
/
2
/
89
/
72
/
2741072
/
meta
/
3012654
/
mysql.backup
/
[
Home
]
File: 1_035c54e_14.mysqlcluster14.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster14 Database: 1_035c54e_14 -- ------------------------------------------------------ -- Server version 5.6.39-83.1-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES 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 `wp_blog_versions` -- DROP TABLE IF EXISTS `wp_blog_versions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_blog_versions` ( `blog_id` bigint(20) NOT NULL DEFAULT '0', `db_version` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`blog_id`), KEY `db_version` (`db_version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_blog_versions` -- LOCK TABLES `wp_blog_versions` WRITE; /*!40000 ALTER TABLE `wp_blog_versions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_blog_versions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_blogs` -- DROP TABLE IF EXISTS `wp_blogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_blogs` ( `blog_id` bigint(20) NOT NULL AUTO_INCREMENT, `site_id` bigint(20) NOT NULL DEFAULT '0', `domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `public` tinyint(2) NOT NULL DEFAULT '1', `archived` tinyint(2) NOT NULL DEFAULT '0', `mature` tinyint(2) NOT NULL DEFAULT '0', `spam` tinyint(2) NOT NULL DEFAULT '0', `deleted` tinyint(2) NOT NULL DEFAULT '0', `lang_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`blog_id`), KEY `domain` (`domain`(50),`path`(5)), KEY `lang_id` (`lang_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_blogs` -- LOCK TABLES `wp_blogs` WRITE; /*!40000 ALTER TABLE `wp_blogs` DISABLE KEYS */; INSERT INTO `wp_blogs` VALUES (1,1,'cems-agrochem.com','/','2016-12-14 07:09:21','2018-04-16 04:45:33',1,0,0,0,0,0),(2,1,'cems-agrochem.com','/agrochemsri/','2016-12-14 08:01:51','2016-12-14 10:16:20',1,0,0,0,0,0); /*!40000 ALTER TABLE `wp_blogs` 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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 */; /*!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` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci 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)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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 */; /*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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_ngg_album` -- DROP TABLE IF EXISTS `wp_ngg_album`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_ngg_album` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `previewpic` bigint(20) NOT NULL DEFAULT '0', `albumdesc` mediumtext, `sortorder` longtext NOT NULL, `pageid` bigint(20) NOT NULL DEFAULT '0', `extras_post_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `extras_post_id_key` (`extras_post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_ngg_album` -- LOCK TABLES `wp_ngg_album` WRITE; /*!40000 ALTER TABLE `wp_ngg_album` DISABLE KEYS */; INSERT INTO `wp_ngg_album` VALUES (1,'Food Pro & Agro Bangladesh International Expo','food-pro-agro-bangladesh-international-expo',1,'','WyIxIiwiMiJd',0,98); /*!40000 ALTER TABLE `wp_ngg_album` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_ngg_gallery` -- DROP TABLE IF EXISTS `wp_ngg_gallery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_ngg_gallery` ( `gid` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `path` mediumtext, `title` mediumtext, `galdesc` mediumtext, `pageid` bigint(20) NOT NULL DEFAULT '0', `previewpic` bigint(20) NOT NULL DEFAULT '0', `author` bigint(20) NOT NULL DEFAULT '0', `extras_post_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`gid`), KEY `extras_post_id_key` (`extras_post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_ngg_gallery` -- LOCK TABLES `wp_ngg_gallery` WRITE; /*!40000 ALTER TABLE `wp_ngg_gallery` DISABLE KEYS */; INSERT INTO `wp_ngg_gallery` VALUES (4,'food-and-agro','food-and-agro','/wp-content/gallery/food-and-agro','Food and Agro','',0,112,1,140),(5,'valued-logo','valued-logo','/wp-content/gallery/valued-logo','valued-logo','',0,37,1,263); /*!40000 ALTER TABLE `wp_ngg_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_ngg_pictures` -- DROP TABLE IF EXISTS `wp_ngg_pictures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_ngg_pictures` ( `pid` bigint(20) NOT NULL AUTO_INCREMENT, `image_slug` varchar(255) NOT NULL, `post_id` bigint(20) NOT NULL DEFAULT '0', `galleryid` bigint(20) NOT NULL DEFAULT '0', `filename` varchar(255) NOT NULL, `description` mediumtext, `alttext` mediumtext, `imagedate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `exclude` tinyint(4) DEFAULT '0', `sortorder` bigint(20) NOT NULL DEFAULT '0', `meta_data` longtext, `extras_post_id` bigint(20) NOT NULL DEFAULT '0', `updated_at` bigint(20) DEFAULT NULL, PRIMARY KEY (`pid`), KEY `extras_post_id_key` (`extras_post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_ngg_pictures` -- LOCK TABLES `wp_ngg_pictures` WRITE; /*!40000 ALTER TABLE `wp_ngg_pictures` DISABLE KEYS */; INSERT INTO `wp_ngg_pictures` VALUES (16,'thumbs_11427762_467814393368365_7844651332786493247_5n',0,3,'thumbs_11427762_467814393368365_7844651332786493247_5n.jpg','','thumbs_11427762_467814393368365_7844651332786493247_5n','2015-06-17 09:12:59',0,0,'eyIwIjpmYWxzZSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwid2lkdGgiOjYwMCwiaGVpZ2h0Ijo0NTAsInNhdmVkIjp0cnVlLCJ0aHVtYm5haWwiOnsid2lkdGgiOjQwMCwiaGVpZ2h0IjoyNTB9LCJuZ2cwZHluLTB4MjUwLTAwZjB3MDExYzAxMHIxMTBmMTEwcjAxMHQwMTAiOnsid2lkdGgiOjMzMywiaGVpZ2h0IjoyNTAsImZpbGVuYW1lIjoidGh1bWJzXzExNDI3NzYyXzQ2NzgxNDM5MzM2ODM2NV83ODQ0NjUxMzMyNzg2NDkzMjQ3XzVuLmpwZy1uZ2dpZDAyMTYtbmdnMGR5bi0weDI1MC0wMGYwdzAxMWMwMTByMTEwZjExMHIwMTB0MDEwLmpwZyIsImdlbmVyYXRlZCI6IjAuMDYyMDU3MDAgMTQzNDUzMjk4MiJ9fQ==',136,1434532982),(17,'thumbs_11407228_467808840035587_6687833193919930531_n',0,3,'thumbs_11407228_467808840035587_6687833193919930531_n.jpg','','thumbs_11407228_467808840035587_6687833193919930531_n','2015-06-17 09:13:34',0,0,'a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:600;s:6:\"height\";i:450;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:400;s:6:\"height\";i:250;}}',0,NULL),(18,'11215802_467814296701708_8417981841133168063_n',0,3,'11215802_467814296701708_8417981841133168063_n.jpg','','11215802_467814296701708_8417981841133168063_n','2015-06-17 09:13:47',0,0,'a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:960;s:6:\"height\";i:640;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:400;s:6:\"height\";i:250;}}',0,NULL),(19,'thumbs_11407228_467808840035587_6687833193919930531_n_0',0,3,'thumbs_11407228_467808840035587_6687833193919930531_n_0.jpg','','thumbs_11407228_467808840035587_6687833193919930531_n_0','2015-06-17 09:14:06',0,0,'a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:600;s:6:\"height\";i:450;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:400;s:6:\"height\";i:250;}}',0,NULL),(20,'11393104_467814060035065_2891123569364602738_n',0,3,'11393104_467814060035065_2891123569364602738_n.jpg','','11393104_467814060035065_2891123569364602738_n','2015-06-17 09:14:21',0,0,'a:17:{i:0;b:0;s:8:\"aperture\";b:0;s:6:\"credit\";b:0;s:6:\"camera\";b:0;s:7:\"caption\";b:0;s:17:\"created_timestamp\";b:0;s:9:\"copyright\";b:0;s:12:\"focal_length\";b:0;s:3:\"iso\";b:0;s:13:\"shutter_speed\";b:0;s:5:\"flash\";b:0;s:5:\"title\";b:0;s:8:\"keywords\";b:0;s:5:\"width\";i:960;s:6:\"height\";i:640;s:5:\"saved\";b:1;s:9:\"thumbnail\";a:2:{s:5:\"width\";i:400;s:6:\"height\";i:250;}}',0,NULL),(22,'thumbs_11427762_467814393368365_7844651332786493247_5n-1',0,4,'thumbs_11427762_467814393368365_7844651332786493247_5n-1.jpg','','thumbs_11427762_467814393368365_7844651332786493247_5n','2015-06-17 09:24:32',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJ0aHVtYnNfMTE0Mjc3NjJfNDY3ODE0MzkzMzY4MzY1Xzc4NDQ2NTEzMzI3ODY0OTMyNDdfNW4tMS5qcGciLCJ3aWR0aCI6NjAwLCJoZWlnaHQiOjQ1MCwiZ2VuZXJhdGVkIjoiMC40MTg2OTUwMCAxNDM0NTMzMDcyIn0sIndpZHRoIjo2MDAsImhlaWdodCI6NDUwLCJmdWxsIjp7IndpZHRoIjo2MDAsImhlaWdodCI6NDUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic190aHVtYnNfMTE0Mjc3NjJfNDY3ODE0MzkzMzY4MzY1Xzc4NDQ2NTEzMzI3ODY0OTMyNDdfNW4tMS5qcGciLCJnZW5lcmF0ZWQiOiIwLjQ3MDkyMjAwIDE0MzQ1MzMwNzIifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',142,1464156575),(23,'thumbs_11428731_467814156701722_7607020877621209532_n4',0,4,'thumbs_11428731_467814156701722_7607020877621209532_n4.jpg','','thumbs_11428731_467814156701722_7607020877621209532_n4','2015-06-17 09:24:35',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJ0aHVtYnNfMTE0Mjg3MzFfNDY3ODE0MTU2NzAxNzIyXzc2MDcwMjA4Nzc2MjEyMDk1MzJfbjQuanBnIiwid2lkdGgiOjYwMCwiaGVpZ2h0Ijo0NTAsImdlbmVyYXRlZCI6IjAuODQ3NTEyMDAgMTQzNDUzMzA3NSJ9LCJ3aWR0aCI6NjAwLCJoZWlnaHQiOjQ1MCwiZnVsbCI6eyJ3aWR0aCI6NjAwLCJoZWlnaHQiOjQ1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfdGh1bWJzXzExNDI4NzMxXzQ2NzgxNDE1NjcwMTcyMl83NjA3MDIwODc3NjIxMjA5NTMyX240LmpwZyIsImdlbmVyYXRlZCI6IjAuOTAyNDI5MDAgMTQzNDUzMzA3NSJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',144,1464156575),(24,'11215802_467814296701708_8417981841133168063_n-1',0,4,'11215802_467814296701708_8417981841133168063_n-1.jpg','','11215802_467814296701708_8417981841133168063_n','2015-06-17 09:27:47',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiIxMTIxNTgwMl80Njc4MTQyOTY3MDE3MDhfODQxNzk4MTg0MTEzMzE2ODA2M19uLTEuanBnIiwid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDAsImdlbmVyYXRlZCI6IjAuODE2MTI2MDAgMTQzNDUzMzI2NyJ9LCJ3aWR0aCI6OTYwLCJoZWlnaHQiOjY0MCwiZnVsbCI6eyJ3aWR0aCI6OTYwLCJoZWlnaHQiOjY0MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfMTEyMTU4MDJfNDY3ODE0Mjk2NzAxNzA4Xzg0MTc5ODE4NDExMzMxNjgwNjNfbi0xLmpwZyIsImdlbmVyYXRlZCI6IjAuOTE4ODYzMDAgMTQzNDUzMzI2NyJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',147,1464156575),(26,'11350562_467813946701743_2628541697742313852_n1',0,4,'11350562_467813946701743_2628541697742313852_n1.jpg','','11350562_467813946701743_2628541697742313852_n1','2015-06-17 09:27:50',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiIxMTM1MDU2Ml80Njc4MTM5NDY3MDE3NDNfMjYyODU0MTY5Nzc0MjMxMzg1Ml9uMS5qcGciLCJ3aWR0aCI6OTYwLCJoZWlnaHQiOjY0MCwiZ2VuZXJhdGVkIjoiMC4wNjMxMDYwMCAxNDM0NTMzMjcwIn0sIndpZHRoIjo5NjAsImhlaWdodCI6NjQwLCJmdWxsIjp7IndpZHRoIjo5NjAsImhlaWdodCI6NjQwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic18xMTM1MDU2Ml80Njc4MTM5NDY3MDE3NDNfMjYyODU0MTY5Nzc0MjMxMzg1Ml9uMS5qcGciLCJnZW5lcmF0ZWQiOiIwLjE3Mjc5NDAwIDE0MzQ1MzMyNzAifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',151,1464156575),(28,'11403343_467814043368400_7745644898113678858_n',0,4,'11403343_467814043368400_7745644898113678858_n.jpg','','11403343_467814043368400_7745644898113678858_n','2015-06-17 09:27:51',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiIxMTQwMzM0M180Njc4MTQwNDMzNjg0MDBfNzc0NTY0NDg5ODExMzY3ODg1OF9uLmpwZyIsIndpZHRoIjo5NjAsImhlaWdodCI6NjQwLCJnZW5lcmF0ZWQiOiIwLjgyNTQzNzAwIDE0MzQ1MzMyNzEifSwid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDAsImZ1bGwiOnsid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzXzExNDAzMzQzXzQ2NzgxNDA0MzM2ODQwMF83NzQ1NjQ0ODk4MTEzNjc4ODU4X24uanBnIiwiZ2VuZXJhdGVkIjoiMC45MjI4MjEwMCAxNDM0NTMzMjcxIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',155,1464156575),(29,'11406920_467814403368364_799800414709535019_n',0,4,'11406920_467814403368364_799800414709535019_n.jpg','','11406920_467814403368364_799800414709535019_n','2015-06-17 09:27:52',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiIxMTQwNjkyMF80Njc4MTQ0MDMzNjgzNjRfNzk5ODAwNDE0NzA5NTM1MDE5X24uanBnIiwid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDAsImdlbmVyYXRlZCI6IjAuNjM3MzkzMDAgMTQzNDUzMzI3MiJ9LCJ3aWR0aCI6OTYwLCJoZWlnaHQiOjY0MCwiZnVsbCI6eyJ3aWR0aCI6OTYwLCJoZWlnaHQiOjY0MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfMTE0MDY5MjBfNDY3ODE0NDAzMzY4MzY0Xzc5OTgwMDQxNDcwOTUzNTAxOV9uLmpwZyIsImdlbmVyYXRlZCI6IjAuNzY2MTk4MDAgMTQzNDUzMzI3MiJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',157,1464156575),(30,'11427762_467814393368365_7844651332786493247_n',0,4,'11427762_467814393368365_7844651332786493247_n.jpg','','11427762_467814393368365_7844651332786493247_n','2015-06-17 09:27:53',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiIxMTQyNzc2Ml80Njc4MTQzOTMzNjgzNjVfNzg0NDY1MTMzMjc4NjQ5MzI0N19uLmpwZyIsIndpZHRoIjo5NjAsImhlaWdodCI6NjQwLCJnZW5lcmF0ZWQiOiIwLjQ5Njk1NjAwIDE0MzQ1MzMyNzMifSwid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDAsImZ1bGwiOnsid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzXzExNDI3NzYyXzQ2NzgxNDM5MzM2ODM2NV83ODQ0NjUxMzMyNzg2NDkzMjQ3X24uanBnIiwiZ2VuZXJhdGVkIjoiMC41OTIyODQwMCAxNDM0NTMzMjczIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',159,1464156575),(31,'thumbs_11393104_467814060035065_2891123569364602738_n3',0,4,'thumbs_11393104_467814060035065_2891123569364602738_n3.jpg','','thumbs_11393104_467814060035065_2891123569364602738_n3','2015-06-17 09:29:44',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJ0aHVtYnNfMTEzOTMxMDRfNDY3ODE0MDYwMDM1MDY1XzI4OTExMjM1NjkzNjQ2MDI3MzhfbjMuanBnIiwid2lkdGgiOjYwMCwiaGVpZ2h0Ijo0NTAsImdlbmVyYXRlZCI6IjAuODY0Mzc4MDAgMTQzNDUzMzM4NCJ9LCJ3aWR0aCI6NjAwLCJoZWlnaHQiOjQ1MCwiZnVsbCI6eyJ3aWR0aCI6NjAwLCJoZWlnaHQiOjQ1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfdGh1bWJzXzExMzkzMTA0XzQ2NzgxNDA2MDAzNTA2NV8yODkxMTIzNTY5MzY0NjAyNzM4X24zLmpwZyIsImdlbmVyYXRlZCI6IjAuOTE1NDkyMDAgMTQzNDUzMzM4NCJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',161,1464156575),(35,'_mg_1308',0,4,'MG_1308.JPG','','_MG_1308','2015-06-17 09:35:09',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18xMzA4LkpQRyIsIndpZHRoIjoxMDAwLCJoZWlnaHQiOjY2NywiZ2VuZXJhdGVkIjoiMC4xNTAxOTcwMCAxNDM0NTMzNzA5In0sIndpZHRoIjoxMDAwLCJoZWlnaHQiOjY2NywiZnVsbCI6eyJ3aWR0aCI6MTAwMCwiaGVpZ2h0Ijo2Njd9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzEzMDguSlBHIiwiZ2VuZXJhdGVkIjoiMC4yNTM1MzgwMCAxNDM0NTMzNzA5In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',169,1464156575),(36,'_mg_1313',0,4,'MG_1313.JPG','','_MG_1313','2015-06-17 09:35:09',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18xMzEzLkpQRyIsIndpZHRoIjoxMDAwLCJoZWlnaHQiOjY2NywiZ2VuZXJhdGVkIjoiMC45OTM1NjQwMCAxNDM0NTMzNzA5In0sIndpZHRoIjoxMDAwLCJoZWlnaHQiOjY2NywiZnVsbCI6eyJ3aWR0aCI6MTAwMCwiaGVpZ2h0Ijo2Njd9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzEzMTMuSlBHIiwiZ2VuZXJhdGVkIjoiMC4wOTE5NzEwMCAxNDM0NTMzNzEwIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',171,1464156575),(37,'kfk-logo',0,5,'KFK-Logo.jpg','','P-Billboard 30FT X 20FT','2015-09-16 04:40:40',0,1,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJLRkstTG9nby5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjEyNywiZ2VuZXJhdGVkIjoiMC41Mjk3MjIwMCAxNDQyMzc4NDQwIn0sIndpZHRoIjoyMDAsImhlaWdodCI6MTI3LCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTI3fSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTI3LCJmaWxlbmFtZSI6InRodW1ic19LRkstTG9nby5qcGciLCJnZW5lcmF0ZWQiOiIwLjU1MDM0NjAwIDE0NDIzNzg0NDAifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6IlAtQmlsbGJvYXJkIDMwRlQgWCAyMEZUIiwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',262,1456546996),(46,'p6-logo',0,5,'p6-logo.jpg','','p6-logo','2015-09-16 04:41:32',0,2,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJwNi1sb2dvLmpwZyIsIndpZHRoIjoyMTAsImhlaWdodCI6MTEwLCJnZW5lcmF0ZWQiOiIwLjcwMTgzNjAwIDE0NDIzNzg0OTIifSwid2lkdGgiOjIxMCwiaGVpZ2h0IjoxMTAsImZ1bGwiOnsid2lkdGgiOjIxMCwiaGVpZ2h0IjoxMTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxMTAsImZpbGVuYW1lIjoidGh1bWJzX3A2LWxvZ28uanBnIiwiZ2VuZXJhdGVkIjoiMC43MjAyNTcwMCAxNDQyMzc4NDkyIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',281,1456546996),(55,'p8-logo',0,5,'p8-logo.jpg','','p8-logo','2015-09-16 04:54:54',0,3,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJwOC1sb2dvLmpwZyIsIndpZHRoIjoxNzksImhlaWdodCI6MTY2LCJnZW5lcmF0ZWQiOiIwLjMxMjMxNjAwIDE0NDIzNzkyOTQifSwid2lkdGgiOjE3OSwiaGVpZ2h0IjoxNjYsImZ1bGwiOnsid2lkdGgiOjE3OSwiaGVpZ2h0IjoxNjZ9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjE3OSwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX3A4LWxvZ28uanBnIiwiZ2VuZXJhdGVkIjoiMC4zMzI4ODMwMCAxNDQyMzc5Mjk0In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',300,1456546996),(56,'p9-logo',0,5,'p9-logo.jpg','','p9-logo','2015-09-16 04:58:14',0,4,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJwOS1sb2dvLmpwZyIsIndpZHRoIjoxNzksImhlaWdodCI6MTY2LCJnZW5lcmF0ZWQiOiIwLjAyMDU4ODAwIDE0NDIzNzk0OTQifSwid2lkdGgiOjE3OSwiaGVpZ2h0IjoxNjYsImZ1bGwiOnsid2lkdGgiOjE3OSwiaGVpZ2h0IjoxNjZ9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjE3OSwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX3A5LWxvZ28uanBnIiwiZ2VuZXJhdGVkIjoiMC4wNDA3MjgwMCAxNDQyMzc5NDk0In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',302,1456546996),(58,'p7-logo',0,5,'p7-logo.jpg','','p7-logo','2015-09-16 05:02:08',0,5,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJwNy1sb2dvLmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjkyMzIyNzAwIDE0NDIzNzk3MjgifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX3A3LWxvZ28uanBnIiwiZ2VuZXJhdGVkIjoiMC45NDM1NzgwMCAxNDQyMzc5NzI4In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',306,1456546996),(60,'logo2',0,5,'logo2.jpg','','logo2','2015-09-16 05:05:36',0,6,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMi5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC45Njc1OTEwMCAxNDQyMzc5OTM2In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19sb2dvMi5qcGciLCJnZW5lcmF0ZWQiOiIwLjk5MzM1MTAwIDE0NDIzNzk5MzYifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',310,1456546996),(63,'logo29',0,5,'logo29.jpg','','logo29','2015-09-16 05:07:36',0,7,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjkuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuOTgzODI0MDAgMTQ0MjM4MDA1NiJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfbG9nbzI5LmpwZyIsImdlbmVyYXRlZCI6IjAuMDE3MzY3MDAgMTQ0MjM4MDA1NyJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',316,1456546996),(65,'logo26',0,5,'logo26.jpg','','logo26','2015-09-16 05:09:15',0,8,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjYuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuODczNDQ3MDAgMTQ0MjM4MDE1NSJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfbG9nbzI2LmpwZyIsImdlbmVyYXRlZCI6IjAuODkzODM5MDAgMTQ0MjM4MDE1NSJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',320,1456546996),(66,'logo28',0,5,'logo28.jpg','','logo28','2015-09-16 05:10:21',0,9,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjguanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuNTI4ODAyMDAgMTQ0MjM4MDIyMSJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfbG9nbzI4LmpwZyIsImdlbmVyYXRlZCI6IjAuNTUzMzI4MDAgMTQ0MjM4MDIyMSJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',322,1456546996),(68,'logo28-copy',0,5,'logo28-Copy.jpg','','logo28---Copy','2015-09-16 05:15:55',0,10,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjgtQ29weS5qcGciLCJ3aWR0aCI6MTM4LCJoZWlnaHQiOjEyNSwiZ2VuZXJhdGVkIjoiMC4xMTYzNzQwMCAxNDQyMzgwNTU1In0sIndpZHRoIjoxMzgsImhlaWdodCI6MTI1LCJmdWxsIjp7IndpZHRoIjoxMzgsImhlaWdodCI6MTI1fSwidGh1bWJuYWlsIjp7IndpZHRoIjoxMzgsImhlaWdodCI6MTI1LCJmaWxlbmFtZSI6InRodW1ic19sb2dvMjgtQ29weS5qcGciLCJnZW5lcmF0ZWQiOiIwLjE0NTIwMTAwIDE0NDIzODA1NTUifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',326,1456546996),(69,'logo29-1',0,5,'logo29-1.jpg','','logo29','2015-09-16 05:18:46',0,11,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjktMS5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC44NTg0NDUwMCAxNDQyMzgwNzI2In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19sb2dvMjktMS5qcGciLCJnZW5lcmF0ZWQiOiIwLjg4OTcwMTAwIDE0NDIzODA3MjYifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',328,1456546996),(70,'logo20',0,5,'logo20.jpg','','logo20','2015-09-16 05:20:45',0,12,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjAuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuMTQ1NTU3MDAgMTQ0MjM4MDg0NSJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfbG9nbzIwLmpwZyIsImdlbmVyYXRlZCI6IjAuMTY3ODk1MDAgMTQ0MjM4MDg0NSJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',330,1456546996),(71,'logo25',0,5,'logo25.jpg','','logo25','2015-09-16 05:21:30',0,13,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjUuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuMDEwNjYwMDAgMTQ0MjM4MDg5MCJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfbG9nbzI1LmpwZyIsImdlbmVyYXRlZCI6IjAuMDMwODMzMDAgMTQ0MjM4MDg5MCJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',332,1456546996),(72,'naogaon-trade-logo-01',0,5,'Naogaon-trade-logo-01.jpg','','Naogaon-trade-logo-01','2015-09-16 05:29:04',0,14,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJOYW9nYW9uLXRyYWRlLWxvZ28tMDEuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuODYyMTM5MDAgMTQ0MjM4MTM0NCJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfTmFvZ2Fvbi10cmFkZS1sb2dvLTAxLmpwZyIsImdlbmVyYXRlZCI6IjAuODkwMDc0MDAgMTQ0MjM4MTM0NCJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',334,1456546996),(73,'logo29-2',0,5,'logo29-2.jpg','','logo29','2015-09-16 05:34:07',0,15,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjktMi5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC40NDM4NjEwMCAxNDQyMzgxNjQ3In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19sb2dvMjktMi5qcGciLCJnZW5lcmF0ZWQiOiIwLjQ2NDM0MDAwIDE0NDIzODE2NDcifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',336,1456546996),(74,'logo27',0,5,'logo27.jpg','','logo27','2015-09-16 08:11:37',0,16,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMjcuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuMDE0OTM1MDAgMTQ0MjM5MTA5NyJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfbG9nbzI3LmpwZyIsImdlbmVyYXRlZCI6IjAuMDQ2OTM0MDAgMTQ0MjM5MTA5NyJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',338,1456546996),(75,'logo31',0,5,'logo31.jpg','','logo31','2015-09-19 04:08:16',0,17,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJsb2dvMzEuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuOTY4NjUyMDAgMTQ0MjYzNTY5NiJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfbG9nbzMxLmpwZyIsImdlbmVyYXRlZCI6IjAuMDA2NDU4MDAgMTQ0MjYzNTY5NyJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',364,1456546996),(76,'untitled-1',0,5,'Untitled-1.jpg','','Untitled-1','2015-09-21 06:27:13',0,18,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xLmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjAzMjY3NzAwIDE0NDI4MTY4MzMifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTEuanBnIiwiZ2VuZXJhdGVkIjoiMC4wNjI4NDcwMCAxNDQyODE2ODMzIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',366,1456546996),(77,'untitled-2',0,5,'Untitled-2.jpg','','Untitled-2','2015-09-21 06:27:13',0,19,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0yLmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjAxMTU3NjAwIDE0NDI4MTY4MzQifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTIuanBnIiwiZ2VuZXJhdGVkIjoiMC4wNDE5NjIwMCAxNDQyODE2ODM0In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',368,1456546996),(78,'untitled-3',0,5,'Untitled-3.jpg','','Untitled-3','2015-09-21 06:27:14',0,20,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0zLmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjg2MTk5NDAwIDE0NDI4MTY4MzQifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTMuanBnIiwiZ2VuZXJhdGVkIjoiMC44OTY2MjIwMCAxNDQyODE2ODM0In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',370,1456546996),(79,'untitled-4',0,5,'Untitled-4.jpg','','Untitled-4','2015-09-21 06:27:15',0,21,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC00LmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjkwMjY4MDAwIDE0NDI4MTY4MzUifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTQuanBnIiwiZ2VuZXJhdGVkIjoiMC45MzY4MzAwMCAxNDQyODE2ODM1In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',372,1456546996),(80,'untitled-5',0,5,'Untitled-5.jpg','','Untitled-5','2015-09-21 06:27:16',0,22,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC01LmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjY3NTg0MjAwIDE0NDI4MTY4MzYifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTUuanBnIiwiZ2VuZXJhdGVkIjoiMC43MDk4MDAwMCAxNDQyODE2ODM2In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',374,1456546996),(81,'untitled-6',0,5,'Untitled-6.jpg','','Untitled-6','2015-09-21 06:27:17',0,23,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC02LmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjU2MTA3NDAwIDE0NDI4MTY4MzcifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTYuanBnIiwiZ2VuZXJhdGVkIjoiMC41OTYxMzUwMCAxNDQyODE2ODM3In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',376,1456546996),(82,'untitled-7',0,5,'Untitled-7.jpg','','Untitled-7','2015-09-21 06:27:18',0,24,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC03LmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjYwNDA3NDAwIDE0NDI4MTY4MzgifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTcuanBnIiwiZ2VuZXJhdGVkIjoiMC42MzE1ODUwMCAxNDQyODE2ODM4In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',378,1456546996),(83,'untitled-8',0,5,'Untitled-8.jpg','','Untitled-8','2015-09-21 06:27:19',0,25,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC04LmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjYzNzg5MjAwIDE0NDI4MTY4MzkifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTguanBnIiwiZ2VuZXJhdGVkIjoiMC42ODcwNjAwMCAxNDQyODE2ODM5In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',380,1456546996),(84,'untitled-9',0,5,'Untitled-9.jpg','','Untitled-9','2015-09-21 06:27:20',0,26,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC05LmpwZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJnZW5lcmF0ZWQiOiIwLjQ4Nzc1MzAwIDE0NDI4MTY4NDAifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTB9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTkuanBnIiwiZ2VuZXJhdGVkIjoiMC41MTc1MDYwMCAxNDQyODE2ODQwIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',382,1456546996),(85,'untitled-10',0,5,'Untitled-10.jpg','','Untitled-10','2015-09-21 06:27:21',0,27,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xMC5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC40MDcyMjQwMCAxNDQyODE2ODQxIn0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0xMC5qcGciLCJnZW5lcmF0ZWQiOiIwLjQzMTY1NTAwIDE0NDI4MTY4NDEifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',384,1456546996),(86,'untitled-11',0,5,'Untitled-11.jpg','','Untitled-11','2015-09-21 06:27:22',0,28,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xMS5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4zNTQzNjMwMCAxNDQyODE2ODQyIn0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0xMS5qcGciLCJnZW5lcmF0ZWQiOiIwLjM4MzE4OTAwIDE0NDI4MTY4NDIifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',386,1456546996),(87,'untitled-12',0,5,'Untitled-12.jpg','','Untitled-12','2015-09-21 06:27:23',0,29,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xMi5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4zMzQ4NDYwMCAxNDQyODE2ODQzIn0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0xMi5qcGciLCJnZW5lcmF0ZWQiOiIwLjM1NTQ2MTAwIDE0NDI4MTY4NDMifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',388,1456546996),(88,'untitled-13',0,5,'Untitled-13.jpg','','Untitled-13','2015-09-21 06:27:24',0,30,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xMy5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4xNDMxNjUwMCAxNDQyODE2ODQ0In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0xMy5qcGciLCJnZW5lcmF0ZWQiOiIwLjE3MTk3NjAwIDE0NDI4MTY4NDQifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',390,1456546996),(90,'untitled-15',0,5,'Untitled-15.jpg','','Untitled-15','2015-09-21 06:27:26',0,32,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xNS5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4zNjEzNTgwMCAxNDQyODE2ODQ2In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0xNS5qcGciLCJnZW5lcmF0ZWQiOiIwLjQwMjM0MjAwIDE0NDI4MTY4NDYifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',394,1456546996),(91,'untitled-16',0,5,'Untitled-16.jpg','','Untitled-16','2015-09-21 06:27:27',0,33,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xNi5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4yNzgwMDkwMCAxNDQyODE2ODQ3In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0xNi5qcGciLCJnZW5lcmF0ZWQiOiIwLjMwODM4MDAwIDE0NDI4MTY4NDcifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',396,1456546996),(92,'untitled-18',0,5,'Untitled-18.jpg','','Untitled-18','2015-09-22 06:49:36',0,34,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xOC5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4wMDU1NzIwMCAxNDQyOTA0NTc3In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0xOC5qcGciLCJnZW5lcmF0ZWQiOiIwLjA3NTAxMjAwIDE0NDI5MDQ1NzcifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',446,1456546996),(93,'food25',0,5,'food25.jpg','','food25','2016-01-28 07:13:00',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJmb29kMjUuanBnIiwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImdlbmVyYXRlZCI6IjAuOTU2MDczMDAgMTQ1Mzk2NTE4MCJ9LCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZnVsbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MH0sInRodW1ibmFpbCI6eyJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZmlsZW5hbWUiOiJ0aHVtYnNfZm9vZDI1LmpwZyIsImdlbmVyYXRlZCI6IjAuOTg1NzY0MDAgMTQ1Mzk2NTE4MCJ9LCJhcGVydHVyZSI6ZmFsc2UsImNyZWRpdCI6ZmFsc2UsImNhbWVyYSI6ZmFsc2UsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',483,1456546996),(95,'94',0,5,'94.jpg','','94','2016-01-28 07:15:34',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiI5NC5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4zNzE4NDMwMCAxNDUzOTY1MzM0In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic185NC5qcGciLCJnZW5lcmF0ZWQiOiIwLjM5MjExODAwIDE0NTM5NjUzMzQifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',487,1456546996),(96,'96',0,5,'96.jpg','','96','2016-01-28 07:17:22',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiI5Ni5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4xNjI3MTMwMCAxNDUzOTY1NDQyIn0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic185Ni5qcGciLCJnZW5lcmF0ZWQiOiIwLjE4MzU3MTAwIDE0NTM5NjU0NDIifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',489,1456546996),(101,'urmin_group_of_companies_logo',0,5,'URMIN_GROUP_OF_COMPANIES_LOGO.jpg','','URMIN_GROUP_OF_COMPANIES_LOGO','2016-02-25 06:50:40',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVUk1JTl9HUk9VUF9PRl9DT01QQU5JRVNfTE9HTy5qcGciLCJ3aWR0aCI6MjAxLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC44Mzg1ODUwMCAxNDU2MzgzMDQwIn0sIndpZHRoIjoyMDEsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDEsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VUk1JTl9HUk9VUF9PRl9DT01QQU5JRVNfTE9HTy5qcGciLCJnZW5lcmF0ZWQiOiIwLjg3MjI4NjAwIDE0NTYzODMwNDAifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',505,1456546996),(102,'untitled-24',0,5,'Untitled-24.jpg','','Untitled-24','2016-02-27 04:28:29',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0yNC5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC4xMzg2NTIwMCAxNDU2NTQ3MzA5In0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0yNC5qcGciLCJnZW5lcmF0ZWQiOiIwLjE1OTA2MjAwIDE0NTY1NDczMDkifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',516,1456547309),(103,'untitled-25',0,5,'Untitled-25.jpg','','Untitled-25','2016-02-27 04:28:30',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0yNS5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC44NjUwNDUwMCAxNDU2NTQ3MzEwIn0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0yNS5qcGciLCJnZW5lcmF0ZWQiOiIwLjg4NTg5ODAwIDE0NTY1NDczMTAifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',518,1456547310),(104,'untitled-26',0,5,'Untitled-26.jpg','','Untitled-26','2016-02-27 04:28:31',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0yNi5qcGciLCJ3aWR0aCI6MjAwLCJoZWlnaHQiOjE1MCwiZ2VuZXJhdGVkIjoiMC45MzA2NDAwMCAxNDU2NTQ3MzExIn0sIndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmdWxsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwfSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19VbnRpdGxlZC0yNi5qcGciLCJnZW5lcmF0ZWQiOiIwLjk1MjA4NzAwIDE0NTY1NDczMTEifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwic2F2ZWQiOnRydWV9',520,1456547311),(106,'untitled-1-1',0,5,'Untitled-1.png','','Untitled-1','2016-03-22 09:34:30',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJVbnRpdGxlZC0xLnBuZyIsIndpZHRoIjoyMDAsImhlaWdodCI6MTMzLCJnZW5lcmF0ZWQiOiIwLjEyNjc0NjAwIDE0NTg2MzkyNzAifSwid2lkdGgiOjIwMCwiaGVpZ2h0IjoxMzMsImZ1bGwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxMzN9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxMzMsImZpbGVuYW1lIjoidGh1bWJzX1VudGl0bGVkLTEucG5nIiwiZ2VuZXJhdGVkIjoiMC4xNTM1NjAwMCAxNDU4NjM5MjcwIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjpmYWxzZSwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOmZhbHNlLCJrZXl3b3JkcyI6ZmFsc2UsInNhdmVkIjp0cnVlfQ==',542,1458639270),(107,'11215802_467814296701708_8417981841133168063_n-2',0,4,'11215802_467814296701708_8417981841133168063_n.jpg','','11215802_467814296701708_8417981841133168063_n','2016-05-25 07:58:38',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiIxMTIxNTgwMl80Njc4MTQyOTY3MDE3MDhfODQxNzk4MTg0MTEzMzE2ODA2M19uLmpwZyIsIndpZHRoIjo5NjAsImhlaWdodCI6NjQwLCJnZW5lcmF0ZWQiOiIwLjcyMjE1NzAwIDE0NjQxNjMxMTgifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDAsInNhdmVkIjp0cnVlLCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzXzExMjE1ODAyXzQ2NzgxNDI5NjcwMTcwOF84NDE3OTgxODQxMTMzMTY4MDYzX24uanBnIiwiZ2VuZXJhdGVkIjoiMC40MTEyMzYwMCAxNDY0MTYzMTIxIn19',576,1464163121),(108,'11393104_467814060035065_2891123569364602738_n-1',0,4,'11393104_467814060035065_2891123569364602738_n.jpg','','11393104_467814060035065_2891123569364602738_n','2016-05-25 07:58:38',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiIxMTM5MzEwNF80Njc4MTQwNjAwMzUwNjVfMjg5MTEyMzU2OTM2NDYwMjczOF9uLmpwZyIsIndpZHRoIjo5NjAsImhlaWdodCI6NjQwLCJnZW5lcmF0ZWQiOiIwLjc0NTc5NzAwIDE0NjQxNjMxMTgifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOmZhbHNlLCJjYXB0aW9uIjpmYWxzZSwiY3JlYXRlZF90aW1lc3RhbXAiOmZhbHNlLCJjb3B5cmlnaHQiOmZhbHNlLCJmb2NhbF9sZW5ndGgiOmZhbHNlLCJpc28iOmZhbHNlLCJzaHV0dGVyX3NwZWVkIjpmYWxzZSwiZmxhc2giOmZhbHNlLCJ0aXRsZSI6ZmFsc2UsImtleXdvcmRzIjpmYWxzZSwid2lkdGgiOjk2MCwiaGVpZ2h0Ijo2NDAsInNhdmVkIjp0cnVlLCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzXzExMzkzMTA0XzQ2NzgxNDA2MDAzNTA2NV8yODkxMTIzNTY5MzY0NjAyNzM4X24uanBnIiwiZ2VuZXJhdGVkIjoiMC4xNjI0MTEwMCAxNDY0MTYzMTIyIn19',577,1464163122),(112,'_mg_3178',0,4,'MG_3178.JPG','','_MG_3178','2016-05-25 08:02:42',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMTc4LkpQRyIsIndpZHRoIjozMTExLCJoZWlnaHQiOjIwNzQsImdlbmVyYXRlZCI6IjAuNjY0NTUzMDAgMTQ2NDE2MzM2MiJ9LCJ3aWR0aCI6MzExMSwiaGVpZ2h0IjoyMDc0LCJmdWxsIjp7IndpZHRoIjozMTExLCJoZWlnaHQiOjIwNzR9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMxNzguSlBHIiwiZ2VuZXJhdGVkIjoiMC40MDI1NDEwMCAxNDY0MTYzMzYzIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',582,1464163363),(113,'_mg_3188',0,4,'MG_3188.JPG','','_MG_3188','2016-05-25 08:02:56',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMTg4LkpQRyIsIndpZHRoIjozMTExLCJoZWlnaHQiOjIwNzQsImdlbmVyYXRlZCI6IjAuNjgxNzg2MDAgMTQ2NDE2MzM3NiJ9LCJ3aWR0aCI6MzExMSwiaGVpZ2h0IjoyMDc0LCJmdWxsIjp7IndpZHRoIjozMTExLCJoZWlnaHQiOjIwNzR9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMxODguSlBHIiwiZ2VuZXJhdGVkIjoiMC40MjE2MDIwMCAxNDY0MTYzMzc3In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',584,1464163377),(114,'_mg_3208',0,4,'MG_3208.JPG','','_MG_3208','2016-05-25 08:03:08',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMjA4LkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuMDAzNjE1MDAgMTQ2NDE2MzM4OSJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMyMDguSlBHIiwiZ2VuZXJhdGVkIjoiMC41MTA5OTIwMCAxNDY0MTYzMzg5In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',586,1464163389),(115,'_mg_3220',0,4,'MG_3220.JPG','','_MG_3220','2016-05-25 08:03:16',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMjIwLkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuODMwNDEzMDAgMTQ2NDE2MzM5NiJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMyMjAuSlBHIiwiZ2VuZXJhdGVkIjoiMC4zNTIxNDYwMCAxNDY0MTYzMzk3In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',588,1464163397),(116,'_mg_3222',0,4,'MG_3222.JPG','','_MG_3222','2016-05-25 08:03:27',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMjIyLkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuNDU3OTE1MDAgMTQ2NDE2MzQwNyJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMyMjIuSlBHIiwiZ2VuZXJhdGVkIjoiMC4wMjY4ODAwMCAxNDY0MTYzNDA4In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',590,1464163408),(117,'_mg_3250',0,4,'MG_3250.JPG','','_MG_3250','2016-05-25 08:03:37',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMjUwLkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuMDk5NDU3MDAgMTQ2NDE2MzQxNyJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMyNTAuSlBHIiwiZ2VuZXJhdGVkIjoiMC42MjY0MTUwMCAxNDY0MTYzNDE3In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',592,1464163417),(118,'_mg_3268',0,4,'MG_3268.JPG','','_MG_3268','2016-05-25 08:03:49',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMjY4LkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuMzY3NjkyMDAgMTQ2NDE2MzQyOSJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMyNjguSlBHIiwiZ2VuZXJhdGVkIjoiMC45MTIzNjYwMCAxNDY0MTYzNDI5In0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',594,1464163429),(119,'_mg_3271',0,4,'MG_3271.JPG','','_MG_3271','2016-05-25 08:04:00',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMjcxLkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuMTQ2MDk2MDAgMTQ2NDE2MzQ0MCJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMyNzEuSlBHIiwiZ2VuZXJhdGVkIjoiMC42ODY2NzAwMCAxNDY0MTYzNDQwIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',596,1464163440),(120,'_mg_3374',0,4,'MG_3374.JPG','','_MG_3374','2016-05-25 08:04:10',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMzc0LkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuMDU0MzE1MDAgMTQ2NDE2MzQ1MCJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMzNzQuSlBHIiwiZ2VuZXJhdGVkIjoiMC42NDMzODQwMCAxNDY0MTYzNDUwIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',598,1464163450),(121,'_mg_3393',0,4,'MG_3393.JPG','','_MG_3393','2016-05-25 08:04:19',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJNR18zMzkzLkpQRyIsIndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3MjgsImdlbmVyYXRlZCI6IjAuNjgxOTgzMDAgMTQ2NDE2MzQ1OSJ9LCJ3aWR0aCI6MjU5MiwiaGVpZ2h0IjoxNzI4LCJmdWxsIjp7IndpZHRoIjoyNTkyLCJoZWlnaHQiOjE3Mjh9LCJ0aHVtYm5haWwiOnsid2lkdGgiOjIwMCwiaGVpZ2h0IjoxNTAsImZpbGVuYW1lIjoidGh1bWJzX01HXzMzOTMuSlBHIiwiZ2VuZXJhdGVkIjoiMC4yNTUxNTUwMCAxNDY0MTYzNDYwIn0sImFwZXJ0dXJlIjpmYWxzZSwiY3JlZGl0IjpmYWxzZSwiY2FtZXJhIjoiQ2Fub24gRU9TIDYwRCIsImNhcHRpb24iOmZhbHNlLCJjcmVhdGVkX3RpbWVzdGFtcCI6ZmFsc2UsImNvcHlyaWdodCI6ZmFsc2UsImZvY2FsX2xlbmd0aCI6ZmFsc2UsImlzbyI6ZmFsc2UsInNodXR0ZXJfc3BlZWQiOmZhbHNlLCJmbGFzaCI6ZmFsc2UsInRpdGxlIjpmYWxzZSwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',600,1464163460),(122,'dscn0623',0,4,'DSCN0623.JPG','','DSCN0623','2016-05-25 08:04:28',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJEU0NOMDYyMy5KUEciLCJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4LCJnZW5lcmF0ZWQiOiIwLjgyMzkzOTAwIDE0NjQxNjM0NjgifSwid2lkdGgiOjIzMDQsImhlaWdodCI6MTcyOCwiZnVsbCI6eyJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4fSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19EU0NOMDYyMy5KUEciLCJnZW5lcmF0ZWQiOiIwLjM0NTY1MjAwIDE0NjQxNjM0NjkifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOiJDT09MUElYIFM5OTAwIiwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOiIgICAgICAgICAgIiwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',602,1464163469),(123,'dscn0732',0,4,'DSCN0732.JPG','','DSCN0732','2016-05-25 08:04:36',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJEU0NOMDczMi5KUEciLCJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4LCJnZW5lcmF0ZWQiOiIwLjQyMzI4MjAwIDE0NjQxNjM0NzYifSwid2lkdGgiOjIzMDQsImhlaWdodCI6MTcyOCwiZnVsbCI6eyJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4fSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19EU0NOMDczMi5KUEciLCJnZW5lcmF0ZWQiOiIwLjk0MTM0MDAwIDE0NjQxNjM0NzYifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOiJDT09MUElYIFM5OTAwIiwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOiIgICAgICAgICAgIiwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',604,1464163476),(124,'dscn0749',0,4,'DSCN0749.JPG','','DSCN0749','2016-05-25 08:04:44',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJEU0NOMDc0OS5KUEciLCJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4LCJnZW5lcmF0ZWQiOiIwLjgzOTkyMzAwIDE0NjQxNjM0ODQifSwid2lkdGgiOjIzMDQsImhlaWdodCI6MTcyOCwiZnVsbCI6eyJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4fSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19EU0NOMDc0OS5KUEciLCJnZW5lcmF0ZWQiOiIwLjM1NDgxNDAwIDE0NjQxNjM0ODUifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOiJDT09MUElYIFM5OTAwIiwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOiIgICAgICAgICAgIiwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',606,1464163485),(125,'dscn0758',0,4,'DSCN0758.JPG','','DSCN0758','2016-05-25 08:04:52',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJEU0NOMDc1OC5KUEciLCJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4LCJnZW5lcmF0ZWQiOiIwLjUyMjk3ODAwIDE0NjQxNjM0OTIifSwid2lkdGgiOjIzMDQsImhlaWdodCI6MTcyOCwiZnVsbCI6eyJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4fSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19EU0NOMDc1OC5KUEciLCJnZW5lcmF0ZWQiOiIwLjA2MDk2MTAwIDE0NjQxNjM0OTMifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOiJDT09MUElYIFM5OTAwIiwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOiIgICAgICAgICAgIiwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',608,1464163493),(126,'dscn0821',0,4,'DSCN0821.JPG','','DSCN0821','2016-05-25 08:04:59',0,0,'eyJiYWNrdXAiOnsiZmlsZW5hbWUiOiJEU0NOMDgyMS5KUEciLCJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4LCJnZW5lcmF0ZWQiOiIwLjEzNjAyNTAwIDE0NjQxNjM0OTkifSwid2lkdGgiOjIzMDQsImhlaWdodCI6MTcyOCwiZnVsbCI6eyJ3aWR0aCI6MjMwNCwiaGVpZ2h0IjoxNzI4fSwidGh1bWJuYWlsIjp7IndpZHRoIjoyMDAsImhlaWdodCI6MTUwLCJmaWxlbmFtZSI6InRodW1ic19EU0NOMDgyMS5KUEciLCJnZW5lcmF0ZWQiOiIwLjY1ODQzNjAwIDE0NjQxNjM0OTkifSwiYXBlcnR1cmUiOmZhbHNlLCJjcmVkaXQiOmZhbHNlLCJjYW1lcmEiOiJDT09MUElYIFM5OTAwIiwiY2FwdGlvbiI6ZmFsc2UsImNyZWF0ZWRfdGltZXN0YW1wIjpmYWxzZSwiY29weXJpZ2h0IjpmYWxzZSwiZm9jYWxfbGVuZ3RoIjpmYWxzZSwiaXNvIjpmYWxzZSwic2h1dHRlcl9zcGVlZCI6ZmFsc2UsImZsYXNoIjpmYWxzZSwidGl0bGUiOiIgICAgICAgICAgIiwia2V5d29yZHMiOmZhbHNlLCJzYXZlZCI6dHJ1ZX0=',610,1464163499); /*!40000 ALTER TABLE `wp_ngg_pictures` 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=86427 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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://cems-agrochem.com/','yes'),(2,'blogname','Agro and Chem','yes'),(3,'blogdescription','Agro and Chem','yes'),(4,'users_can_register','1','yes'),(5,'admin_email','saiful.cems92@gmail.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(21,'posts_per_page','10','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(28,'comment_moderation','','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','/blog/index.php/%postname%/','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:0:{}','yes'),(36,'home','http://cems-agrochem.com/','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'comment_max_links','2','yes'),(41,'gmt_offset','0','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','a:5:{i:0;s:85:\"/home4/mel/public_html/cems-foodagro/foodagrobd/wp-content/themes/foodagro/header.php\";i:2;s:85:\"/home4/mel/public_html/cems-foodagro/foodagrobd/wp-content/themes/foodagro/footer.php\";i:3;s:84:\"/home4/mel/public_html/cems-foodagro/foodagrobd/wp-content/themes/foodagro/style.css\";i:4;s:84:\"/home4/mel/public_html/cems-foodagro/foodagrobd/wp-content/themes/foodagro/index.php\";i:5;s:73:\"/home4/mel/public_html/cems-foodagro/wp-content/themes/foodagro/style.css\";}','no'),(44,'template','Expo','yes'),(45,'stylesheet','Expo','yes'),(46,'comment_whitelist','1','yes'),(47,'blacklist_keys','','no'),(48,'comment_registration','','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','37965','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','','yes'),(55,'blog_public','1','yes'),(56,'default_link_category','2','yes'),(57,'show_on_front','page','yes'),(58,'tag_base','','yes'),(59,'show_avatars','1','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','300','yes'),(66,'medium_size_h','300','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','file','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','1','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','asc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(83,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(84,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(85,'uninstall_plugins','a:2:{s:29:\"nextgen-gallery/nggallery.php\";a:2:{i:0;s:9:\"nggLoader\";i:1;s:9:\"uninstall\";}s:46:\"wonderplugin-carousel/wonderplugincarousel.php\";s:31:\"wonderplugin_carousel_uninstall\";}','no'),(86,'timezone_string','','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','5','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','25824','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{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:24:\"NextGEN Gallery overview\";b:1;s:19:\"NextGEN Use TinyMCE\";b:1;s:21:\"NextGEN Upload images\";b:1;s:22:\"NextGEN Manage gallery\";b:1;s:19:\"NextGEN Manage tags\";b:1;s:29:\"NextGEN Manage others gallery\";b:1;s:18:\"NextGEN Edit album\";b:1;s:20:\"NextGEN Change style\";b:1;s:22:\"NextGEN Change options\";b:1;s:24:\"NextGEN Attach Interface\";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;}}}','yes'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:10:\"calendar-2\";}s:18:\"footer-column-left\";a:0:{}s:20:\"footer-column-center\";a:0:{}s:19:\"footer-column-right\";N;s:13:\"alt-sidebar-1\";N;s:13:\"alt-sidebar-2\";N;s:13:\"alt-sidebar-3\";N;s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:5:{i:1523865075;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1523868378;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:1523868382;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:1523869856;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(108,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:24:\"http://cems-foodagro.com\";s:4:\"link\";s:100:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://cems-foodagro.com/\";s:3:\"url\";s:133:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://cems-foodagro.com/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(141,'theme_mods_twentythirteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1432630298;s:4:\"data\";a:3:{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\";}s:9:\"sidebar-2\";a:0:{}}}}','yes'),(142,'current_theme','Expo18','yes'),(143,'theme_mods_foodagro','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1475904155;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:10:\"calendar-2\";}s:18:\"footer-column-left\";a:0:{}s:20:\"footer-column-center\";a:0:{}s:19:\"footer-column-right\";a:0:{}s:13:\"alt-sidebar-1\";a:0:{}s:13:\"alt-sidebar-2\";a:0:{}s:13:\"alt-sidebar-3\";a:0:{}}}}','yes'),(144,'theme_switched','','yes'),(145,'om_expo18_options_template','a:78:{i:0;a:2:{s:4:\"name\";s:16:\"General settings\";s:4:\"type\";s:7:\"heading\";}i:1;a:6:{s:4:\"name\";s:14:\"Site logo type\";s:4:\"desc\";s:65:\"Choose what do you want to use as site logo: image or plain text.\";s:2:\"id\";s:24:\"om_expo18_site_logo_type\";s:3:\"std\";s:5:\"image\";s:7:\"options\";a:2:{s:5:\"image\";s:5:\"Image\";s:4:\"text\";s:22:\"Plain text (Blog Name)\";}s:4:\"type\";s:5:\"radio\";}i:2;a:5:{s:4:\"name\";s:15:\"Site logo image\";s:4:\"desc\";s:139:\"Upload a logo for your theme, or specify the image address of your online logo (http://example.com/logo.png). Best fit is about 430x140 px.\";s:2:\"id\";s:25:\"om_expo18_site_logo_image\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:3;a:5:{s:4:\"name\";s:14:\"Site logo text\";s:4:\"desc\";s:135:\"Specify logo text, if \"Plain text\" Logo used. You can use <span> tag to colorize text, i.e.:<br />My <span>Logo</span> Text\";s:2:\"id\";s:24:\"om_expo18_site_logo_text\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:4;a:5:{s:4:\"name\";s:12:\"Site favicon\";s:4:\"desc\";s:87:\"Upload an *.ico file or 16px x 16px Png/Gif image that will for your website\'s favicon.\";s:2:\"id\";s:17:\"om_expo18_favicon\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:5;a:5:{s:4:\"name\";s:23:\"Event location and date\";s:4:\"desc\";s:256:\"Text in the header, event location and date. Can contain link to the page and words can be highlighted by <span> tag, e.g.:<br /><i><a href=\"/map/\">New Orleans, Louisiana<br/>02/25 — 02/28/<span>2014</span></a></i>\";s:2:\"id\";s:23:\"om_expo18_location_date\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:6;a:5:{s:4:\"name\";s:30:\"Event start date for countdown\";s:4:\"desc\";s:74:\"Format must be <b>YYYY-MM-DD HH:MM:SS</b>, for example 2014-02-25 10:00:00\";s:2:\"id\";s:24:\"om_expo18_countdown_date\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:7;a:5:{s:4:\"name\";s:0:\"\";s:4:\"desc\";s:31:\"Hide seconds on countdown timer\";s:2:\"id\";s:32:\"om_expo18_countdown_hide_seconds\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";}i:8;a:5:{s:4:\"name\";s:21:\"Special button: title\";s:4:\"desc\";s:91:\"You can add special button to menu line, and link it, for example to the registration page.\";s:2:\"id\";s:30:\"om_expo18_special_button_title\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:9;a:5:{s:4:\"name\";s:20:\"Special button: link\";s:4:\"desc\";s:23:\"Link for special button\";s:2:\"id\";s:29:\"om_expo18_special_button_link\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:10;a:5:{s:4:\"name\";s:16:\"Footer text line\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:21:\"om_expo18_footer_text\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:11;a:5:{s:4:\"name\";s:24:\"Activate responsive mode\";s:4:\"desc\";s:67:\"Check if you want your site to be fitted by width on mobile devices\";s:2:\"id\";s:20:\"om_expo18_responsive\";s:3:\"std\";s:4:\"true\";s:4:\"type\";s:8:\"checkbox\";}i:12;a:5:{s:4:\"name\";s:28:\"Hide comments block on pages\";s:4:\"desc\";s:156:\"Check if you want to hide comments block on single pages. To hide comments on post pages and portfolio - see sections \"Post options\" and \"Portfolio options\"\";s:2:\"id\";s:29:\"om_expo18_hide_comments_pages\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";}i:13;a:5:{s:4:\"name\";s:14:\"FeedBurner URL\";s:4:\"desc\";s:172:\"Enter your full FeedBurner URL (or any other preferred feed URL) if you wish to use FeedBurner over the standard WordPress Feed e.g. http://feeds.feedburner.com/yoururlhere\";s:2:\"id\";s:20:\"om_expo18_feedburner\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:14;a:2:{s:4:\"name\";s:7:\"Styling\";s:4:\"type\";s:7:\"heading\";}i:15;a:5:{s:4:\"name\";s:0:\"\";s:4:\"desc\";s:133:\"Apply custom styling by inline code (check this option if you have problems with styling because of styling file rewrite permissions)\";s:2:\"id\";s:24:\"om_expo18_use_inline_css\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";}i:16;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:12:\"<b>Color</b>\";s:4:\"type\";s:5:\"intro\";}i:17;a:5:{s:4:\"name\";s:13:\"Primary color\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:23:\"om_expo18_primary_color\";s:3:\"std\";s:7:\"#335ebe\";s:4:\"type\";s:5:\"color\";}i:18;a:5:{s:4:\"name\";s:15:\"Highlight color\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:25:\"om_expo18_highlight_color\";s:3:\"std\";s:7:\"#f89811\";s:4:\"type\";s:5:\"color\";}i:19;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:43:\"<b>Top/bottom area animated background:</b>\";s:4:\"type\";s:5:\"intro\";}i:20;a:6:{s:4:\"name\";s:29:\"Background animated image set\";s:4:\"desc\";s:52:\"Choose one of the builded-in animated background set\";s:2:\"id\";s:28:\"om_expo18_background_img_set\";s:3:\"std\";s:7:\"bgset-1\";s:7:\"options\";a:11:{s:7:\"bgset-1\";s:2:\"#1\";s:7:\"bgset-2\";s:2:\"#2\";s:7:\"bgset-3\";s:2:\"#3\";s:7:\"bgset-4\";s:2:\"#4\";s:7:\"bgset-5\";s:2:\"#5\";s:7:\"bgset-6\";s:2:\"#6\";s:7:\"bgset-7\";s:2:\"#7\";s:7:\"bgset-8\";s:2:\"#8\";s:7:\"bgset-9\";s:2:\"#9\";s:8:\"bgset-10\";s:3:\"#10\";s:8:\"bgset-11\";s:3:\"#11\";}s:4:\"type\";s:7:\"select2\";}i:21;a:5:{s:4:\"name\";s:39:\"Custom background image — Layer 1\";s:4:\"desc\";s:134:\"Upload your background image (wide image, min height - 520px or pattern, or leave this field empty to choose one of the above dropdown\";s:2:\"id\";s:34:\"om_expo18_background_img_custom_l1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:22;a:5:{s:4:\"name\";s:39:\"Custom background image — Layer 2\";s:4:\"desc\";s:148:\"This is top layer with transparency for parallax effect. Upload your background image, or leave this field empty to choose one of the above dropdown\";s:2:\"id\";s:34:\"om_expo18_background_img_custom_l2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:23;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:13:\"<b>Fonts:</b>\";s:4:\"type\";s:5:\"intro\";}i:24;a:6:{s:4:\"name\";s:9:\"Base font\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:19:\"om_expo18_base_font\";s:3:\"std\";s:5:\"Arial\";s:7:\"options\";a:12:{s:5:\"Arial\";s:5:\"Arial\";s:15:\"Times New Roman\";s:15:\"Times New Roman\";s:7:\"Verdana\";s:7:\"Verdana\";s:6:\"Tahoma\";s:6:\"Tahoma\";s:7:\"Courier\";s:7:\"Courier\";s:11:\"Courier New\";s:11:\"Courier New\";s:7:\"Georgia\";s:7:\"Georgia\";s:6:\"Impact\";s:6:\"Impact\";s:14:\"Lucida Console\";s:14:\"Lucida Console\";s:12:\"Trebuchet MS\";s:12:\"Trebuchet MS\";s:4:\"Arvo\";s:4:\"Arvo\";s:9:\"Open Sans\";s:9:\"Open Sans\";}s:4:\"type\";s:7:\"select2\";}i:25;a:5:{s:4:\"name\";s:29:\"Custom Google.Fonts base font\";s:4:\"desc\";s:215:\"Choose the the font from <a href=\"http://www.google.com/webfonts\" target=\"_blank\">http://www.google.com/webfonts</a> and enter the name.<br/>If you want to choose the font from the list above, leave this field empty\";s:2:\"id\";s:26:\"om_expo18_custom_base_font\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:26;a:6:{s:4:\"name\";s:14:\"Highlight font\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:24:\"om_expo18_highlight_font\";s:3:\"std\";s:9:\"Open Sans\";s:7:\"options\";a:12:{s:5:\"Arial\";s:5:\"Arial\";s:15:\"Times New Roman\";s:15:\"Times New Roman\";s:7:\"Verdana\";s:7:\"Verdana\";s:6:\"Tahoma\";s:6:\"Tahoma\";s:7:\"Courier\";s:7:\"Courier\";s:11:\"Courier New\";s:11:\"Courier New\";s:7:\"Georgia\";s:7:\"Georgia\";s:6:\"Impact\";s:6:\"Impact\";s:14:\"Lucida Console\";s:14:\"Lucida Console\";s:12:\"Trebuchet MS\";s:12:\"Trebuchet MS\";s:4:\"Arvo\";s:4:\"Arvo\";s:9:\"Open Sans\";s:9:\"Open Sans\";}s:4:\"type\";s:7:\"select2\";}i:27;a:5:{s:4:\"name\";s:34:\"Custom Google.Fonts highlight font\";s:4:\"desc\";s:215:\"Choose the the font from <a href=\"http://www.google.com/webfonts\" target=\"_blank\">http://www.google.com/webfonts</a> and enter the name.<br/>If you want to choose the font from the list above, leave this field empty\";s:2:\"id\";s:31:\"om_expo18_custom_highlight_font\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:28;a:6:{s:4:\"name\";s:9:\"Logo font\";s:4:\"desc\";s:47:\"Font for logo (if logo mode is text, not image)\";s:2:\"id\";s:19:\"om_expo18_logo_font\";s:3:\"std\";s:10:\"Montserrat\";s:7:\"options\";a:14:{s:5:\"Arial\";s:5:\"Arial\";s:15:\"Times New Roman\";s:15:\"Times New Roman\";s:7:\"Verdana\";s:7:\"Verdana\";s:6:\"Tahoma\";s:6:\"Tahoma\";s:7:\"Courier\";s:7:\"Courier\";s:11:\"Courier New\";s:11:\"Courier New\";s:7:\"Georgia\";s:7:\"Georgia\";s:6:\"Impact\";s:6:\"Impact\";s:14:\"Lucida Console\";s:14:\"Lucida Console\";s:12:\"Trebuchet MS\";s:12:\"Trebuchet MS\";s:4:\"Arvo\";s:4:\"Arvo\";s:9:\"Open Sans\";s:9:\"Open Sans\";s:5:\"Dosis\";s:5:\"Dosis\";s:10:\"Montserrat\";s:10:\"Montserrat\";}s:4:\"type\";s:7:\"select2\";}i:29;a:5:{s:4:\"name\";s:29:\"Custom Google.Fonts logo font\";s:4:\"desc\";s:215:\"Choose the the font from <a href=\"http://www.google.com/webfonts\" target=\"_blank\">http://www.google.com/webfonts</a> and enter the name.<br/>If you want to choose the font from the list above, leave this field empty\";s:2:\"id\";s:26:\"om_expo18_custom_logo_font\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:30;a:5:{s:4:\"name\";s:17:\"Testimonials font\";s:2:\"id\";s:26:\"om_expo18_testimonial_font\";s:3:\"std\";s:7:\"Satisfy\";s:7:\"options\";a:14:{s:5:\"Arial\";s:5:\"Arial\";s:15:\"Times New Roman\";s:15:\"Times New Roman\";s:7:\"Verdana\";s:7:\"Verdana\";s:6:\"Tahoma\";s:6:\"Tahoma\";s:7:\"Courier\";s:7:\"Courier\";s:11:\"Courier New\";s:11:\"Courier New\";s:7:\"Georgia\";s:7:\"Georgia\";s:6:\"Impact\";s:6:\"Impact\";s:14:\"Lucida Console\";s:14:\"Lucida Console\";s:12:\"Trebuchet MS\";s:12:\"Trebuchet MS\";s:4:\"Arvo\";s:4:\"Arvo\";s:9:\"Open Sans\";s:9:\"Open Sans\";s:5:\"Dosis\";s:5:\"Dosis\";s:7:\"Satisfy\";s:7:\"Satisfy\";}s:4:\"type\";s:7:\"select2\";}i:31;a:5:{s:4:\"name\";s:37:\"Custom Google.Fonts testimonials font\";s:4:\"desc\";s:215:\"Choose the the font from <a href=\"http://www.google.com/webfonts\" target=\"_blank\">http://www.google.com/webfonts</a> and enter the name.<br/>If you want to choose the font from the list above, leave this field empty\";s:2:\"id\";s:33:\"om_expo18_custom_testimonial_font\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:32;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:13:\"<b>Other:</b>\";s:4:\"type\";s:5:\"intro\";}i:33;a:6:{s:4:\"name\";s:16:\"Sidebar position\";s:4:\"desc\";s:25:\"Select sidebar alignment.\";s:2:\"id\";s:26:\"om_expo18_sidebar_position\";s:3:\"std\";s:5:\"right\";s:4:\"type\";s:6:\"images\";s:7:\"options\";a:2:{s:5:\"right\";s:68:\"http://cems-agrochem.com/wp-content/themes/Expo/admin/images/2cr.png\";s:4:\"left\";s:68:\"http://cems-agrochem.com/wp-content/themes/Expo/admin/images/2cl.png\";}}i:34;a:2:{s:4:\"name\";s:8:\"Sidebars\";s:4:\"type\";s:7:\"heading\";}i:35;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:167:\"You can set the number of available alternative sidebars, set them up at the \"Appearance > Widgets\" section and choose for every page one of them at the page settings.\";s:4:\"type\";s:5:\"intro\";}i:36;a:5:{s:4:\"name\";s:30:\"Number of alternative sidebars\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:22:\"om_expo18_sidebars_num\";s:3:\"std\";s:1:\"3\";s:4:\"type\";s:4:\"text\";}i:37;a:2:{s:4:\"name\";s:15:\"Homepage slider\";s:4:\"type\";s:7:\"heading\";}i:38;a:5:{s:4:\"name\";s:27:\"Show slider on the homepage\";s:4:\"desc\";s:36:\"Check to show slider on the homepage\";s:2:\"id\";s:30:\"om_expo18_show_homepage_slider\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";}i:39;a:5:{s:4:\"name\";s:9:\"Autoslide\";s:4:\"desc\";s:79:\"Autoslide interval in milliseconds, enter 0 or leave empty to disable autoslide\";s:2:\"id\";s:35:\"om_expo18_homepage_slider_autoslide\";s:3:\"std\";s:4:\"6000\";s:4:\"type\";s:4:\"text\";}i:40;a:5:{s:4:\"name\";s:15:\"Animation speed\";s:4:\"desc\";s:31:\"Animation speed in milliseconds\";s:2:\"id\";s:41:\"om_expo18_homepage_slider_animation_speed\";s:3:\"std\";s:3:\"800\";s:4:\"type\";s:4:\"text\";}i:41;a:6:{s:4:\"name\";s:16:\"Animation effect\";s:4:\"desc\";s:129:\"See demo on <a href=\"http://malsup.com/jquery/cycle/browser.html\" target=\"_blank\">http://malsup.com/jquery/cycle/browser.html</a>\";s:2:\"id\";s:42:\"om_expo18_homepage_slider_animation_effect\";s:3:\"std\";s:6:\"custom\";s:4:\"type\";s:7:\"select2\";s:7:\"options\";a:29:{s:6:\"custom\";s:17:\"Custom Predefined\";s:6:\"blindX\";s:6:\"blindX\";s:6:\"blindY\";s:6:\"blindY\";s:6:\"blindZ\";s:6:\"blindZ\";s:5:\"cover\";s:5:\"cover\";s:8:\"curtainX\";s:8:\"curtainX\";s:8:\"curtainY\";s:8:\"curtainY\";s:4:\"fade\";s:4:\"fade\";s:8:\"fadeZoom\";s:8:\"fadeZoom\";s:5:\"growX\";s:5:\"growX\";s:5:\"growY\";s:5:\"growY\";s:4:\"none\";s:4:\"none\";s:8:\"scrollUp\";s:8:\"scrollUp\";s:10:\"scrollDown\";s:10:\"scrollDown\";s:10:\"scrollLeft\";s:10:\"scrollLeft\";s:11:\"scrollRight\";s:11:\"scrollRight\";s:10:\"scrollHorz\";s:10:\"scrollHorz\";s:10:\"scrollVert\";s:10:\"scrollVert\";s:7:\"shuffle\";s:7:\"shuffle\";s:6:\"slideX\";s:6:\"slideX\";s:6:\"slideY\";s:6:\"slideY\";s:4:\"toss\";s:4:\"toss\";s:6:\"turnUp\";s:6:\"turnUp\";s:8:\"turnDown\";s:8:\"turnDown\";s:8:\"turnLeft\";s:8:\"turnLeft\";s:9:\"turnRight\";s:9:\"turnRight\";s:7:\"uncover\";s:7:\"uncover\";s:4:\"wipe\";s:4:\"wipe\";s:4:\"zoom\";s:4:\"zoom\";}}i:42;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:107:\"You can use tag <i><span>this is colored text</span></i> in slide description to color the text\";s:4:\"type\";s:5:\"intro\";}i:43;a:5:{s:4:\"name\";s:14:\"Slider content\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:25:\"om_expo18_homepage_slider\";s:3:\"std\";a:0:{}s:4:\"type\";s:6:\"slider\";}i:44;a:2:{s:4:\"name\";s:12:\"Post options\";s:4:\"type\";s:7:\"heading\";}i:45;a:5:{s:4:\"name\";s:20:\"Hide post categories\";s:4:\"desc\";s:47:\"Check, if you want to hide categories for posts\";s:2:\"id\";s:30:\"om_expo18_post_hide_categories\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";}i:46;a:5:{s:4:\"name\";s:36:\"Show featured image on the post page\";s:4:\"desc\";s:85:\"Check to show the featured image at the beginning of the post on the single post page\";s:2:\"id\";s:32:\"om_expo18_post_single_show_thumb\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";}i:47;a:5:{s:4:\"name\";s:37:\"Hide comments block on the post pages\";s:4:\"desc\";s:59:\"Check if you want to hide comments block on the post pages.\";s:2:\"id\";s:28:\"om_expo18_hide_comments_post\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";}i:48;a:2:{s:4:\"name\";s:27:\"Extra code blocks, counters\";s:4:\"type\";s:7:\"heading\";}i:49;a:5:{s:4:\"name\";s:31:\"Code block before </head>\";s:4:\"desc\";s:38:\"Here you can add Google.Analytics code\";s:2:\"id\";s:26:\"om_expo18_code_before_head\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:50;a:5:{s:4:\"name\";s:31:\"Code block before </body>\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:26:\"om_expo18_code_before_body\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:51;a:5:{s:4:\"name\";s:42:\"Code block after page header (</H1>)\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:28:\"om_expo18_code_after_page_h1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:52;a:5:{s:4:\"name\";s:29:\"Code block after page content\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:33:\"om_expo18_code_after_page_content\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:53;a:5:{s:4:\"name\";s:61:\"Code block after post header (</H1>) on the single page\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:28:\"om_expo18_code_after_post_h1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:54;a:5:{s:4:\"name\";s:48:\"Code block after post content on the single page\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:33:\"om_expo18_code_after_post_content\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:55;a:2:{s:4:\"name\";s:12:\"Social icons\";s:4:\"type\";s:7:\"heading\";}i:56;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:61:\"Specify necessary links and icons will be shown in the footer\";s:4:\"type\";s:5:\"intro\";}i:57;a:4:{s:4:\"name\";s:13:\"Facebook link\";s:2:\"id\";s:25:\"om_expo18_social_facebook\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:58;a:4:{s:4:\"name\";s:13:\"LinekdIn link\";s:2:\"id\";s:25:\"om_expo18_social_linkedin\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:59;a:4:{s:4:\"name\";s:12:\"Twitter link\";s:2:\"id\";s:24:\"om_expo18_social_twitter\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:60;a:4:{s:4:\"name\";s:12:\"Behance link\";s:2:\"id\";s:24:\"om_expo18_social_behance\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:61;a:4:{s:4:\"name\";s:8:\"RSS link\";s:2:\"id\";s:20:\"om_expo18_social_rss\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:62;a:4:{s:4:\"name\";s:12:\"Blogger link\";s:2:\"id\";s:24:\"om_expo18_social_blogger\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:63;a:4:{s:4:\"name\";s:15:\"Deviantart link\";s:2:\"id\";s:27:\"om_expo18_social_deviantart\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:64;a:4:{s:4:\"name\";s:12:\"Dribble link\";s:2:\"id\";s:24:\"om_expo18_social_dribble\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:65;a:4:{s:4:\"name\";s:11:\"Flickr link\";s:2:\"id\";s:23:\"om_expo18_social_flickr\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:66;a:4:{s:4:\"name\";s:11:\"Google link\";s:2:\"id\";s:23:\"om_expo18_social_google\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:67;a:4:{s:4:\"name\";s:12:\"Myspace link\";s:2:\"id\";s:24:\"om_expo18_social_myspace\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:68;a:4:{s:4:\"name\";s:14:\"Pinterest link\";s:2:\"id\";s:26:\"om_expo18_social_pinterest\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:69;a:4:{s:4:\"name\";s:10:\"Skype link\";s:2:\"id\";s:22:\"om_expo18_social_skype\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:70;a:4:{s:4:\"name\";s:10:\"Vimeo link\";s:2:\"id\";s:22:\"om_expo18_social_vimeo\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:71;a:4:{s:4:\"name\";s:12:\"Youtube link\";s:2:\"id\";s:24:\"om_expo18_social_youtube\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:72;a:2:{s:4:\"name\";s:17:\"Registration form\";s:4:\"type\";s:7:\"heading\";}i:73;a:3:{s:4:\"name\";s:0:\"\";s:7:\"message\";s:88:\"Set up form and include it at any page by inserting shortcode <b>[registration_form]</b>\";s:4:\"type\";s:5:\"intro\";}i:74;a:4:{s:4:\"name\";s:27:\"Email to send the form data\";s:2:\"id\";s:20:\"om_expo18_form_email\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:75;a:5:{s:4:\"name\";s:15:\"Success message\";s:4:\"desc\";s:51:\"Message will be shown after success form submission\";s:2:\"id\";s:22:\"om_expo18_form_success\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:76;a:4:{s:4:\"name\";s:19:\"Submit button title\";s:2:\"id\";s:27:\"om_expo18_form_button_title\";s:3:\"std\";s:9:\"Register!\";s:4:\"type\";s:4:\"text\";}i:77;a:4:{s:4:\"name\";s:11:\"Form fields\";s:2:\"id\";s:21:\"om_expo18_form_fields\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"form_fields\";}}','yes'),(146,'om_expo18_site_logo_type','image','yes'),(148,'om_expo18_site_logo_text','Agro Chem','yes'),(149,'om_expo18_favicon','','yes'),(150,'om_expo18_location_date','','yes'),(151,'om_expo18_countdown_date','','yes'),(152,'om_expo18_countdown_hide_seconds','false','yes'),(153,'om_expo18_special_button_title','','yes'),(154,'om_expo18_special_button_link','','yes'),(155,'om_expo18_footer_text','','yes'),(156,'om_expo18_responsive','true','yes'),(157,'om_expo18_hide_comments_pages','true','yes'),(158,'om_expo18_feedburner','','yes'),(159,'om_expo18_use_inline_css','false','yes'),(160,'om_expo18_primary_color','#3d942c','yes'),(161,'om_expo18_highlight_color','#f89811','yes'),(162,'om_expo18_background_img_set','bgset-2','yes'),(163,'om_expo18_background_img_custom_l1','','yes'),(164,'om_expo18_background_img_custom_l2','','yes'),(165,'om_expo18_base_font','Arial','yes'),(166,'om_expo18_custom_base_font','','yes'),(167,'om_expo18_highlight_font','Open Sans','yes'),(168,'om_expo18_custom_highlight_font','','yes'),(169,'om_expo18_logo_font','Open Sans','yes'),(170,'om_expo18_custom_logo_font','','yes'),(171,'om_expo18_testimonial_font','Satisfy','yes'),(172,'om_expo18_custom_testimonial_font','','yes'),(173,'om_expo18_sidebar_position','right','yes'),(174,'om_expo18_sidebars_num','3','yes'),(175,'om_expo18_show_homepage_slider','false','yes'),(176,'om_expo18_homepage_slider_autoslide','6000','yes'),(177,'om_expo18_homepage_slider_animation_speed','800','yes'),(178,'om_expo18_homepage_slider_animation_effect','custom','yes'),(179,'om_expo18_homepage_slider','a:7:{i:0;a:4:{s:3:\"ord\";s:3:\"100\";s:7:\"bgimage\";s:74:\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3395.jpg\";s:11:\"description\";s:32:\"2ND INT\'L AGRO CHEM BD EXPO 2017\";s:4:\"link\";s:0:\"\";}i:1;a:4:{s:3:\"ord\";s:3:\"100\";s:7:\"bgimage\";s:74:\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3188.jpg\";s:11:\"description\";s:32:\"2ND INT\'L AGRO CHEM BD EXPO 2017\";s:4:\"link\";s:0:\"\";}i:2;a:4:{s:3:\"ord\";s:3:\"100\";s:7:\"bgimage\";s:74:\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\";s:11:\"description\";s:32:\"2ND INT\'L AGRO CHEM BD EXPO 2017\";s:4:\"link\";s:0:\"\";}i:3;a:4:{s:3:\"ord\";s:3:\"100\";s:7:\"bgimage\";s:74:\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3376.jpg\";s:11:\"description\";s:32:\"2ND INT\'L AGRO CHEM BD EXPO 2017\";s:4:\"link\";s:0:\"\";}i:4;a:4:{s:3:\"ord\";s:3:\"100\";s:7:\"bgimage\";s:75:\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/DSCN0735.jpg\";s:11:\"description\";s:32:\"2ND INT\'L AGRO CHEM BD EXPO 2017\";s:4:\"link\";s:0:\"\";}i:5;a:4:{s:3:\"ord\";s:3:\"100\";s:7:\"bgimage\";s:75:\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/DSCN0743.jpg\";s:11:\"description\";s:32:\"2ND INT\'L AGRO CHEM BD EXPO 2017\";s:4:\"link\";s:0:\"\";}i:6;a:4:{s:3:\"ord\";s:3:\"100\";s:7:\"bgimage\";s:75:\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/DSCN0758.jpg\";s:11:\"description\";s:32:\"2ND INT\'L AGRO CHEM BD EXPO 2017\";s:4:\"link\";s:0:\"\";}}','yes'),(180,'om_expo18_post_hide_categories','false','yes'),(181,'om_expo18_post_single_show_thumb','false','yes'),(182,'om_expo18_hide_comments_post','false','yes'),(183,'om_expo18_code_before_head','','yes'),(184,'om_expo18_code_before_body','','yes'),(185,'om_expo18_code_after_page_h1','','yes'),(186,'om_expo18_code_after_page_content','','yes'),(187,'om_expo18_code_after_post_h1','','yes'),(188,'om_expo18_code_after_post_content','','yes'),(189,'om_expo18_social_facebook','https://www.facebook.com/FoodAndAgroExpo/','yes'),(190,'om_expo18_social_linkedin','','yes'),(191,'om_expo18_social_twitter','','yes'),(192,'om_expo18_social_behance','','yes'),(193,'om_expo18_social_rss','','yes'),(194,'om_expo18_social_blogger','','yes'),(195,'om_expo18_social_deviantart','','yes'),(196,'om_expo18_social_dribble','','yes'),(197,'om_expo18_social_flickr','','yes'),(198,'om_expo18_social_google','','yes'),(199,'om_expo18_social_myspace','','yes'),(200,'om_expo18_social_pinterest','','yes'),(201,'om_expo18_social_skype','','yes'),(202,'om_expo18_social_vimeo','','yes'),(203,'om_expo18_social_youtube','','yes'),(204,'om_expo18_form_email','','yes'),(205,'om_expo18_form_success','','yes'),(206,'om_expo18_form_button_title','Register!','yes'),(207,'om_expo18_form_fields','a:10:{i:0;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:1;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:2;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:3;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:4;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:5;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:6;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:7;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:8;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:9;a:2:{s:4:\"name\";s:0:\"\";s:4:\"type\";s:4:\"text\";}}','yes'),(213,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(214,'widget_calendar','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(220,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:22:\"mahatab.cems@gmail.com\";s:7:\"version\";s:6:\"4.2.10\";s:9:\"timestamp\";i:1473283463;}','yes'),(221,'db_upgraded','','yes'),(361,'category_children','a:0:{}','yes'),(414,'recently_activated','a:0:{}','yes'),(415,'ngg_transient_groups','a:8:{s:9:\"__counter\";i:8;s:3:\"MVC\";a:2:{s:2:\"id\";i:2;s:7:\"enabled\";b:1;}s:27:\"displayed_gallery_rendering\";a:2:{s:2:\"id\";i:3;s:7:\"enabled\";b:1;}s:19:\"displayed_galleries\";a:2:{s:2:\"id\";i:4;s:7:\"enabled\";b:1;}s:15:\"col_in_wp_posts\";a:2:{s:2:\"id\";i:5;s:7:\"enabled\";b:1;}s:21:\"col_in_wp_ngg_gallery\";a:2:{s:2:\"id\";i:6;s:7:\"enabled\";b:1;}s:22:\"col_in_wp_ngg_pictures\";a:2:{s:2:\"id\";i:7;s:7:\"enabled\";b:1;}s:19:\"col_in_wp_ngg_album\";a:2:{s:2:\"id\";i:8;s:7:\"enabled\";b:1;}}','yes'),(416,'ngg_options','a:90:{s:11:\"gallerypath\";s:19:\"wp-content/gallery/\";s:11:\"wpmuCSSfile\";s:13:\"nggallery.css\";s:9:\"wpmuStyle\";b:0;s:9:\"wpmuRoles\";b:0;s:16:\"wpmuImportFolder\";b:0;s:13:\"wpmuZipUpload\";b:0;s:14:\"wpmuQuotaCheck\";b:0;s:17:\"datamapper_driver\";s:22:\"custom_post_datamapper\";s:21:\"gallerystorage_driver\";s:25:\"ngglegacy_gallery_storage\";s:20:\"maximum_entity_count\";i:500;s:17:\"router_param_slug\";s:9:\"nggallery\";s:22:\"router_param_separator\";s:2:\"--\";s:19:\"router_param_prefix\";s:0:\"\";s:9:\"deleteImg\";b:1;s:9:\"swfUpload\";b:0;s:13:\"usePermalinks\";b:0;s:13:\"permalinkSlug\";s:9:\"nggallery\";s:14:\"graphicLibrary\";s:2:\"gd\";s:14:\"imageMagickDir\";s:15:\"/usr/local/bin/\";s:11:\"useMediaRSS\";b:0;s:18:\"galleries_in_feeds\";b:0;s:12:\"activateTags\";i:0;s:10:\"appendType\";s:4:\"tags\";s:9:\"maxImages\";i:7;s:14:\"relatedHeading\";s:24:\"<h3>Related Images:</h3>\";s:10:\"thumbwidth\";s:3:\"200\";s:11:\"thumbheight\";s:3:\"150\";s:8:\"thumbfix\";b:1;s:12:\"thumbquality\";i:100;s:8:\"imgWidth\";s:3:\"200\";s:9:\"imgHeight\";s:3:\"150\";s:10:\"imgQuality\";i:100;s:9:\"imgBackup\";b:1;s:13:\"imgAutoResize\";b:0;s:9:\"galImages\";s:2:\"20\";s:17:\"galPagedGalleries\";i:0;s:10:\"galColumns\";i:0;s:12:\"galShowSlide\";b:1;s:12:\"galTextSlide\";s:16:\"[Show slideshow]\";s:14:\"galTextGallery\";s:17:\"[Show thumbnails]\";s:12:\"galShowOrder\";s:7:\"gallery\";s:7:\"galSort\";s:9:\"sortorder\";s:10:\"galSortDir\";s:3:\"ASC\";s:10:\"galNoPages\";b:1;s:13:\"galImgBrowser\";i:0;s:12:\"galHiddenImg\";i:0;s:10:\"galAjaxNav\";i:0;s:11:\"thumbEffect\";s:8:\"fancybox\";s:9:\"thumbCode\";s:41:\"class=\"ngg-fancybox\" rel=\"%GALLERY_NAME%\"\";s:18:\"thumbEffectContext\";s:14:\"nextgen_images\";s:5:\"wmPos\";s:8:\"botRight\";s:6:\"wmXpos\";i:5;s:6:\"wmYpos\";i:5;s:6:\"wmType\";i:0;s:6:\"wmPath\";s:0:\"\";s:6:\"wmFont\";s:9:\"arial.ttf\";s:6:\"wmSize\";i:10;s:6:\"wmText\";s:9:\"Food Agro\";s:7:\"wmColor\";s:7:\"#000000\";s:8:\"wmOpaque\";s:3:\"100\";s:8:\"enableIR\";i:0;s:7:\"slideFx\";s:4:\"fade\";s:5:\"irURL\";s:0:\"\";s:12:\"irXHTMLvalid\";i:0;s:7:\"irAudio\";s:0:\"\";s:7:\"irWidth\";i:600;s:8:\"irHeight\";i:400;s:9:\"irShuffle\";b:1;s:17:\"irLinkfromdisplay\";b:1;s:16:\"irShownavigation\";i:0;s:11:\"irShowicons\";i:0;s:11:\"irWatermark\";i:0;s:13:\"irOverstretch\";s:4:\"True\";s:12:\"irRotatetime\";i:10;s:12:\"irTransition\";s:6:\"random\";s:10:\"irKenburns\";i:0;s:11:\"irBackcolor\";s:6:\"000000\";s:12:\"irFrontcolor\";s:6:\"FFFFFF\";s:12:\"irLightcolor\";s:6:\"CC0000\";s:13:\"irScreencolor\";s:6:\"000000\";s:11:\"activateCSS\";i:1;s:7:\"CSSfile\";s:13:\"nggallery.css\";s:22:\"dynamic_thumbnail_slug\";s:13:\"nextgen-image\";s:23:\"dynamic_stylesheet_slug\";s:12:\"nextgen-dcss\";s:18:\"thumbEffectScripts\";a:1:{i:0;s:0:\"\";}s:17:\"thumbEffectStyles\";a:1:{i:0;s:0:\"\";}s:15:\"thumbEffectCode\";s:0:\"\";s:11:\"installDate\";i:1433833352;s:7:\"slideFX\";s:4:\"fade\";s:28:\"always_enable_frontend_logic\";b:0;}','yes'),(418,'photocrati_auto_update_admin_update_list','','yes'),(419,'photocrati_auto_update_admin_check_date','','yes'),(420,'ngg_db_version','1.8.0','yes'),(421,'pope_module_list','a:34:{i:0;s:17:\"photocrati-fs|0.4\";i:1;s:19:\"photocrati-i18n|0.1\";i:2;s:25:\"photocrati-validation|0.1\";i:3;s:21:\"photocrati-router|0.7\";i:4;s:32:\"photocrati-wordpress_routing|0.6\";i:5;s:23:\"photocrati-security|0.2\";i:6;s:31:\"photocrati-nextgen_settings|0.9\";i:7;s:18:\"photocrati-mvc|0.5\";i:8;s:19:\"photocrati-ajax|0.8\";i:9;s:25:\"photocrati-datamapper|0.9\";i:10;s:30:\"photocrati-nextgen-legacy|0.14\";i:11;s:28:\"photocrati-nextgen-data|0.10\";i:12;s:33:\"photocrati-dynamic_thumbnails|0.6\";i:13;s:28:\"photocrati-nextgen_admin|0.9\";i:14;s:39:\"photocrati-nextgen_gallery_display|0.13\";i:15;s:34:\"photocrati-frame_communication|0.4\";i:16;s:30:\"photocrati-attach_to_post|0.11\";i:17;s:38:\"photocrati-nextgen_addgallery_page|0.6\";i:18;s:36:\"photocrati-nextgen_other_options|0.8\";i:19;s:33:\"photocrati-nextgen_pagination|0.3\";i:20;s:33:\"photocrati-dynamic_stylesheet|0.3\";i:21;s:34:\"photocrati-nextgen_pro_upgrade|0.4\";i:22;s:20:\"photocrati-cache|0.2\";i:23;s:24:\"photocrati-lightbox|0.14\";i:24;s:38:\"photocrati-nextgen_basic_templates|0.5\";i:25;s:37:\"photocrati-nextgen_basic_gallery|0.13\";i:26;s:42:\"photocrati-nextgen_basic_imagebrowser|0.10\";i:27;s:39:\"photocrati-nextgen_basic_singlepic|0.11\";i:28;s:38:\"photocrati-nextgen_basic_tagcloud|0.11\";i:29;s:35:\"photocrati-nextgen_basic_album|0.10\";i:30;s:21:\"photocrati-widget|0.5\";i:31;s:33:\"photocrati-third_party_compat|0.4\";i:32;s:29:\"photocrati-nextgen_xmlrpc|0.4\";i:33;s:20:\"photocrati-wpcli|0.1\";}','yes'),(1701,'WPLANG','','yes'),(4047,'widget_om_widget_flickr','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4048,'widget_om_widget_tweets','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4049,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4050,'widget_om_widget_recent_posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4051,'widget_om_widget_video','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4052,'widget_ngg-mrssw','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4053,'widget_slideshow','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4054,'widget_ngg-images','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4055,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(4056,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(18044,'wonderplugin_carousel_userrole','manage_options','yes'),(18045,'wonderplugin_carousel_thumbnailsize','medium','yes'),(18046,'wonderplugin-carousel-engine','WordPress Carousel Slider Plugin','yes'),(23616,'rewrite_rules','a:88:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:62:\"blog/index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:57:\"blog/index.php/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:38:\"blog/index.php/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:50:\"blog/index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"blog/index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:59:\"blog/index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:54:\"blog/index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:35:\"blog/index.php/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:47:\"blog/index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"blog/index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:60:\"blog/index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:55:\"blog/index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:36:\"blog/index.php/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:48:\"blog/index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:30:\"blog/index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";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:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";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:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=5&cpage=$matches[1]\";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: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:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:62:\"blog/index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:57:\"blog/index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:38:\"blog/index.php/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:50:\"blog/index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"blog/index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:84:\"blog/index.php/([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:79:\"blog/index.php/([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:60:\"blog/index.php/([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:72:\"blog/index.php/([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:\"blog/index.php/([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:71:\"blog/index.php/([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:66:\"blog/index.php/([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:47:\"blog/index.php/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:59:\"blog/index.php/([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:\"blog/index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:58:\"blog/index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:53:\"blog/index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:34:\"blog/index.php/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:46:\"blog/index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"blog/index.php/([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:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:42:\"blog/index.php/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"blog/index.php/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"blog/index.php/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"blog/index.php/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"blog/index.php/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"blog/index.php/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"blog/index.php/([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:35:\"blog/index.php/([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:55:\"blog/index.php/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:50:\"blog/index.php/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:43:\"blog/index.php/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:50:\"blog/index.php/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:39:\"blog/index.php/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:31:\"blog/index.php/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"blog/index.php/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"blog/index.php/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"blog/index.php/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"blog/index.php/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"blog/index.php/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(84206,'_site_transient_timeout_browser_6bcb73d32215374814dad35f9c73b9ad','1475990090','yes'),(84207,'_site_transient_browser_6bcb73d32215374814dad35f9c73b9ad','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(84798,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1481696466;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:3:\"3.2\";s:9:\"hello.php\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.2.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}}}','no'),(84827,'finished_splitting_shared_terms','1','yes'),(84828,'site_icon','0','yes'),(84829,'medium_large_size_w','768','yes'),(84830,'medium_large_size_h','0','yes'),(84833,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.7.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.7-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.7\";s:7:\"version\";s:3:\"4.7\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.7.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.7-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.7\";s:7:\"version\";s:3:\"4.7\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1481696457;s:15:\"version_checked\";s:5:\"4.6.1\";s:12:\"translations\";a:0:{}}','no'),(84834,'_site_transient_timeout_browser_2451ca2aec0606156897568730ffc28a','1476508942','no'),(84835,'_site_transient_browser_2451ca2aec0606156897568730ffc28a','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.143\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(84836,'can_compress_scripts','1','no'),(84847,'theme_mods_twentysixteen','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1475905643;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:10:\"calendar-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(84858,'_site_transient_timeout_wporg_theme_feature_list','1475915661','no'),(84859,'_site_transient_wporg_theme_feature_list','a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}','no'),(84862,'theme_mods_expo18','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1475904687;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:10:\"calendar-2\";}s:18:\"footer-column-left\";a:0:{}s:20:\"footer-column-center\";a:0:{}s:19:\"footer-column-right\";N;s:13:\"alt-sidebar-1\";N;s:13:\"alt-sidebar-2\";N;s:13:\"alt-sidebar-3\";N;}}}','yes'),(84867,'theme_mods_Expo','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}}','yes'),(85423,'_site_transient_timeout_browser_96b16d07ab8d9d5b89d1c48e1ee6d7b8','1482038298','no'),(85424,'_site_transient_browser_96b16d07ab8d9d5b89d1c48e1ee6d7b8','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.75\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(85444,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1481696456;s:7:\"checked\";a:4:{s:4:\"Expo\";s:5:\"1.1.0\";s:13:\"twentyfifteen\";s:3:\"1.7\";s:14:\"twentyfourteen\";s:3:\"1.9\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(85445,'ftp_credentials','a:3:{s:8:\"hostname\";s:18:\"cems-foodagro.com/\";s:8:\"username\";s:8:\"foodagro\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(85473,'_site_transient_timeout_browser_00cb6228a64f759a1bb585e143526e4f','1482300515','no'),(85474,'_site_transient_browser_00cb6228a64f759a1bb585e143526e4f','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(85487,'_transient_timeout_plugin_slugs','1493870240','no'),(85488,'_transient_plugin_slugs','a:1:{i:0;s:19:\"akismet/akismet.php\";}','no'),(85491,'_site_transient_timeout_browser_f90f9d5b5a1bb1d6e2289490ecf74ebb','1482300568','no'),(85492,'_site_transient_browser_f90f9d5b5a1bb1d6e2289490ecf74ebb','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"50.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(85497,'_site_transient_timeout_theme_roots','1481698255','no'),(85498,'_site_transient_theme_roots','a:4:{s:4:\"Expo\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(85501,'_site_transient_timeout_available_translations','1481707639','no'),(85502,'_site_transient_available_translations','a:87:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-06 11:26:31\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-21 10:19:10\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 18:36:09\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-29 08:38:56\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-24 13:13:07\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-20 16:53:20\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-04-19 23:16:37\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-20 10:29:54\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.3/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-11 18:32:36\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-01 16:18:09\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-29 14:03:59\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:56:13\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:59:43\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-05 15:05:02\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-06 12:29:42\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-09 20:42:31\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-20 07:14:07\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 11:54:12\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 02:18:44\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 22:36:25\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 23:19:29\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-04 22:04:52\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 12:34:44\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-19 13:48:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-31 08:03:58\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-04 06:10:33\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 22:11:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 17:56:31\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 15:07:52\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-22 16:41:36\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-27 18:10:49\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-23 20:20:40\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 18:30:48\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-10 18:42:25\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-10 18:17:57\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-02 11:49:52\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-21 15:44:17\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-08 11:09:06\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-25 19:56:49\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-03 13:43:01\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-07 15:12:28\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-06 20:18:25\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-22 05:34:53\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-29 11:28:08\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-02 08:41:39\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-01 15:23:06\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 11:51:34\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-24 07:18:31\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 21:29:34\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-26 17:38:44\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-05-12 13:55:28\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-13 20:38:52\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 14:18:43\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.13/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 13:09:49\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-14 13:24:10\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-26 10:08:38\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-28 08:58:28\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-23 13:45:11\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-22 09:54:16\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.13/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-07 09:30:50\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-26 20:21:25\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-06 22:49:40\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-30 19:40:04\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-08 14:52:32\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-04 18:38:43\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 07:00:01\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 16:41:17\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-01 10:58:06\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-12 07:04:13\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 10:50:15\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-01 16:07:46\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-18 10:43:17\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 01:01:25\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-18 13:53:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-05 11:58:02\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-04-17 03:29:01\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no'),(85521,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1481820510','no'),(85522,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2016 04:37:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security & more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"9542@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"6743@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5790@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2646@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"NextGEN Gallery - WordPress Gallery Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 16 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Search Engine (SEO) & Performance Optimization (WPO) via caching. Integrated caching: CDN, Minify, Page, Object, Fragment, Database support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"One of the most downloaded WordPress plugins (over 30 million downloads since 2007). Use All in One SEO Pack to optimize your site for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Google Analytics by MonsterInsights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that matter.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Clef Two-Factor Authentication\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2012 01:25:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"47509@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical login experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Dave Ross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"UpdraftPlus WordPress Backup Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38058@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26907@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly. Provides tool t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"28395@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26607@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"SiteOrigin Widgets Bundle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 May 2014 14:27:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"67824@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 15 Dec 2016 04:48:30 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Sun, 04 Sep 2011 03:13:51 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'),(85523,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1481820510','no'),(85524,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1481777310','no'),(86409,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1523896353','no'),(86410,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"\n Thu, 12 Apr 2018 20:12:01 +0000 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.0-alpha-42978\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"GDPR Compliance Tools in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2018/04/gdpr-compliance-tools-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Apr 2018 20:11:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5728\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"GDPR compliance is an important consideration for all WordPress websites. The GDPR Compliance team is looking for help to test the privacy tools that are currently being developed in core.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3914:\"<p>GDPR compliance is an important consideration for all WordPress websites. The GDPR Compliance team is looking for help to test the privacy tools that are currently being developed in core. </p>\n\n<h2>What is GDPR?</h2>\n\n<p>GDPR stands for <a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\">General Data Protection Regulation</a> and is intended to strengthen and unify data protection for all individuals within the European Union. Its primary aim is to give control back to the EU residents over their personal data. <br /></p>\n\n<p>Why the urgency? Although the GDPR was introduced two years ago, it becomes enforceable starting May 25, 2018.</p>\n\n<h2>Make WordPress GDPR Compliance Team</h2>\n\n<p>Currently, the GDPR Compliance Team understands that helping WordPress-based sites become compliant is a large and ongoing task. The team is focusing on creating a comprehensive core policy, plugin guidelines, privacy tools and documentation. All of this requires your help.<br /></p>\n\n<p>The GDPR Compliance Team is focusing on four main areas:</p>\n\n<ul>\n <li>Add functionality to assist site owners in creating comprehensive privacy policies for their websites.</li>\n <li>Create guidelines for plugins to become GDPR ready.</li>\n <li>Add administration tools to facilitate compliance and encourage user privacy in general.</li>\n <li>Add documentation to educate site owners on privacy, the main GDPR compliance requirements, and on how to use the new privacy tools.</li>\n</ul>\n\n<h2>Don’t we already have a privacy policy?</h2>\n\n<p>Yes and no. That said, The GDPR puts tighter guidelines and restrictions. Though we have many plugins that create privacy pages, we need means to generate a unified, comprehensive privacy policy. We will need tools for users to easily come into compliance.<br /></p>\n\n<p>Site owners will be able to create GDPR compliant privacy policy in three steps:</p>\n\n<ol>\n <li>Adding a dedicated page for the policy.<br /></li>\n <li>Adding privacy information from plugins.</li>\n <li>Reviewing and publishing the policy.</li>\n</ol>\n\n<p>A new “postbox” will be added to the Edit Page screen when editing the policy. All plugins that collect or store user data will be able to add privacy information there. In addition it will alert the site owners when any privacy information changes after a plugin is activated, deactivated, or updated.<br /></p>\n\n<p>There is a new functionality to confirm user requests by email address. It is intended for site owners to be able to verify requests from users for displaying, downloading, or anonymizing of personal data.<br /></p>\n\n<p>A new “Privacy” page is added under the “Tools” menu. It will display new, confirmed requests from users, as well as already fulfilled requests. It will also contain the tools for exporting and anonymizing of personal data and for requesting email confirmation to avoid abuse attempts.<br /></p>\n\n<p>New section on privacy will be added to the <a href=\"https://developer.wordpress.org/plugins/\">Plugin Handbook</a>. It will contain some general information on user privacy, what a plugin should do to be compliant, and also tips and examples on how to use the new privacy related functionality in WordPress.<br /></p>\n\n<p>The new privacy tools are scheduled for release at the end of April or beginning of May 2018.</p>\n\n<h2>How can you get involved?</h2>\n\n<p>We would love to have your help. The first step is awareness and education. For more information about the upcoming privacy tools see <a href=\"https://make.wordpress.org/core/2018/03/28/roadmap-tools-for-gdpr-compliance/\">the roadmap</a>.</p>\n\n<p>If you would like to get involved in building WordPress Core and testing the new privacy tools, please join the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress</a> Slack group.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5728\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.9.5 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2018/04/wordpress-4-9-5-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Apr 2018 19:56:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5645\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"WordPress 4.9.5 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9.4 and earlier are affected by three security issues. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6347:\"<p>WordPress 4.9.5 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n<p>WordPress versions 4.9.4 and earlier are affected by three security issues. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.5:</p>\n\n<ol>\n <li>Don't treat <code>localhost</code> as same host by default.</li>\n <li>Use safe redirects when redirecting the login page if SSL is forced.</li>\n <li>Make sure the version string is correctly escaped for use in generator tags.</li>\n</ol>\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">coordinated security disclosure</a>: <a href=\"https://profiles.wordpress.org/xknown\">xknown</a> of the WordPress Security Team, <a href=\"https://hackerone.com/nitstorm\">Nitin Venkatesh (nitstorm)</a>, and <a href=\"https://twitter.com/voldemortensen\">Garth Mortensen</a> of the WordPress Security Team.</p>\n\n<p>Twenty-five other bugs were fixed in WordPress 4.9.5. Particularly of note were:</p>\n\n<ul>\n <li>The previous styles on caption shortcodes have been restored.</li>\n <li>Cropping on touch screen devices is now supported.</li>\n <li>A variety of strings such as error messages have been updated for better clarity.</li>\n <li>The position of an attachment placeholder during uploads has been fixed.</li>\n <li>Custom nonce functionality in the REST API JavaScript client has been made consistent throughout the code base.</li>\n <li>Improved compatibility with PHP 7.2.</li>\n</ul>\n\n<p><a href=\"https://make.wordpress.org/core/2018/04/03/wordpress-4-9-5/\">This post has more information about all of the issues fixed in 4.9.5 if you'd like to learn more</a>.</p>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.5</a> or venture over to Dashboard → Updates and click "Update Now." Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.5:</p>\n\n<p><a href=\"https://profiles.wordpress.org/1265578519-1/\">1265578519</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alexgso/\">alexgso</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrei0x309/\">andrei0x309</a>, <a href=\"https://profiles.wordpress.org/antipole/\">antipole</a>, <a href=\"https://profiles.wordpress.org/aranwer104/\">Anwer AR</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/blair-jersyer/\">Blair jersyer</a>, <a href=\"https://profiles.wordpress.org/bandonrandon/\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/codegrau/\">codegrau</a>, <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/electricfeet/\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/ericmeyer/\">ericmeyer</a>, <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/junaidkbr/\">Junaid Ahmed</a>, <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mrmadhat/\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/nandorsky/\">nandorsky</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/qcmiao/\">qcmiao</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/ravanh/\">RavanH</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sebastienthivinfocom/\">Sebastien SERRE</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\">Thomas Vitale</a>, <a href=\"https://profiles.wordpress.org/kwonye/\">Will Kwon</a>, and <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: March 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2018/04/the-month-in-wordpress-march-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Apr 2018 08:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5632\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:317:\"With a significant new milestone and some great improvements to WordPress as a platform, this month has been an important one for the project. Read on to find out more about what happened during the month of March. WordPress Now Powers 30% of the Internet Over the last 15 years, the popularity and usage of […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4328:\"<p>With a significant new milestone and some great improvements to WordPress as a platform, this month has been an important one for the project. Read on to find out more about what happened during the month of March.\n\n</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress Now Powers 30% of the Internet</h2>\n\n<p>Over the last 15 years, the popularity and usage of WordPress has been steadily growing. That growth hit a significant milestone this month when <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">W3Techs reported that WordPress now powers over 30% of sites on the web.</a></p>\n\n<p>The percentage is determined based on W3Techs’ review of the top 10 million sites on the web, and it’s a strong indicator of the popularity and flexibility of WordPress as a platform.</p>\n\n<p>If you would like to have hand in helping to grow WordPress even further, <a href=\"https://make.wordpress.org/\">you can get involved today</a>.</p>\n\n<h2>WordPress Jargon Glossary Goes Live</h2>\n\n<p>The WordPress Marketing Team has been hard at work lately putting together <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">a comprehensive glossary of WordPress jargon</a> to help newcomers to the project become more easily acquainted with things.</p>\n\n<p>The glossary <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">is available here</a> along with a downloadable PDF to make it simpler to reference offline.</p>\n\n<p>Publishing this resource is part of an overall effort to make WordPress more easily accessible for people who are not so familiar with the project. If you would like to assist the Marketing Team with this, you can follow <a href=\"https://make.wordpress.org/marketing/\">the team blog</a> and join the #marketing channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n<h2>Focusing on Privacy in WordPress</h2>\n\n<p>Online privacy has been in the news this month for all the wrong reasons. It has reinforced the commitment of the GDPR Compliance Team to continue working on enhancements to WordPress core that allow site owners to improve privacy standards.</p>\n\n<p>The team's work, and the wider privacy project, spans four areas: Adding tools which will allow site administrators to collect the information they need about their sites, examining the plugin guidelines with privacy in mind, enhancing privacy standards in WordPress core, and creating documentation focused on best practices in online privacy.</p>\n\n<p>To get involved with the project, you can <a href=\"https://make.wordpress.org/core/2018/03/28/roadmap-tools-for-gdpr-compliance/\">view the roadmap</a>, <a href=\"https://make.wordpress.org/core/tag/gdpr-compliance/\">follow the updates</a>, <a href=\"https://core.trac.wordpress.org/query?status=!closed&keywords=~gdpr\">submit patches</a>, and join the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat\">Making WordPress Slack group</a>. Office hours are 15:00 UTC on Wednesdays.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>The WordPress Foundation has published <a href=\"https://wordpressfoundation.org/2017-annual-report/\">their annual report for 2017</a> showing just how much the community has grown over the last year.</li>\n <li>The dates for WordCamp US <a href=\"https://2018.us.wordcamp.org/2018/03/13/announcing-wordcamp-us-2018/\">have been announced</a> — this flagship WordCamp event will be held on 7-9 December this year in Nashville, Tennessee.</li>\n <li>WordPress 4.9.5 is due for release on April 3 — <a href=\"https://make.wordpress.org/core/2018/03/21/wordpress-4-9-5-beta/\">find out more here</a>.</li>\n <li>Version 2.5 of Gutenberg, the new editor for WordPress core, <a href=\"https://make.wordpress.org/core/2018/03/29/whats-new-in-gutenberg-29th-march/\">was released this month</a> with a host of great improvements.</li>\n <li>WordSesh, a virtual WordPress conference, <a href=\"http://wordsesh.com/\">is returning in July this year</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em><br /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5632\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: February 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/03/the-month-in-wordpress-february-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Mar 2018 08:41:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5613\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month. WordPress 4.9.3 & 4.9.4 […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5936:\"<p>Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress 4.9.3 & 4.9.4</h2>\n\n<p>Early in the month, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">version 4.9.3 of WordPress was released</a>, including a number of important bug fixes. Unfortunately it introduced a bug that prevented many sites from automatically updating to future releases. To remedy this issue, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/\">version 4.9.4 was released</a> the following day requiring many people to manually update their sites.</p>\n\n<p>While this kind of issue is always regrettable, the good thing is that it was fixed quickly, and that not all sites had updated to 4.9.3 yet, which meant they bypassed the bug in that version.</p>\n\n<p>You can find out more technical information about this issue <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">on the Core development blog</a>.</p>\n\n<h2>The WordCamp Incubator is Back</h2>\n\n<p>In 2016, the Global Community Team ran an experimental program to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event. This program was dubbed the WordCamp Incubator, and it was so successful in the three cities where it ran that <a href=\"https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/\">the program is back for 2018</a>.</p>\n\n<p>Right now, the Community Team is looking for cities to be a part of this year’s incubator by <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application\">taking applications</a>. Additionally, each incubator community will need an experienced WordCamp organizer to assist them as a co-lead organizer for their event — if that sounds interesting to you, then you can <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-co-lead-application\">fill in the application form for co-leads</a>.</p>\n\n<p>You can find out further information about the WordCamp Incubator <a href=\"https://make.wordpress.org/community/2018/02/19/wordcamp-incubator-program-2018-announcement/\">on the Community Team blog</a>.</p>\n\n<h2>WordPress Meetup Roundtables scheduled for March</h2>\n\n<p>In order to assist local WordPress meetup organizers with running their meetup groups, some members of the Community Team have organized <a href=\"https://make.wordpress.org/community/2018/02/23/wordpress-meetup-roundtables-scheduled-for-march/\">weekly meetup roundtable discussions through the month of March</a>.</p>\n\n<p>These will be run as video chats at 16:00 UTC every Wednesday this month and will be a great place for meetup organizers to come together and help each other out with practical ideas and advice.</p>\n\n<p>If you are not already in the WordPress meetup program and would like to join, you can find out more information in <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the WordPress Meetup Organizer Handbook</a>.</p>\n\n<h2>GDPR Compliance in WordPress Core</h2>\n\n<p>The General Data Protection Regulation (GDPR) is an upcoming regulation that will affect all online services across Europe. In order to prepare for this, a working group has been formed to make sure that WordPress is compliant with the GDPR regulations.</p>\n\n<p>Aside from the fact that this will be a requirement for the project going forward, it will also have an important and significant impact on the privacy and security of WordPress as a whole. The working group has posted <a href=\"https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/\">their proposed roadmap</a> for this project and it looks very promising.</p>\n\n<p>To get involved in building WordPress Core, jump into the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>WPShout published <a href=\"https://wpshout.com/complete-guide-wordpress-security/\">a thorough guide to WordPress security</a>.</li>\n <li>The Community Team has published interesting statistics from the WordCamp program in <a href=\"https://make.wordpress.org/community/2018/02/27/wordcamps-in-2016/\">2016</a> and <a href=\"https://make.wordpress.org/community/2018/02/28/wordcamps-in-2017/\">2017</a>.</li>\n <li><a href=\"https://make.wordpress.org/community/2018/02/15/potential-addition-of-a-new-onboarding-team/\">An intriguing proposal has been made</a> for a new ‘Onboarding’ team to be started in the WordPress project.</li>\n <li>The new editing experience for WordPress, named Gutenberg, continues to be actively developed with <a href=\"https://make.wordpress.org/core/2018/02/16/whats-new-in-gutenberg-16th-february/\">a feature-packed release</a> this past month.</li>\n <li>The Advanced WordPress Facebook group <a href=\"https://www.youtube.com/watch?v=4vS_jR5-nIo\">held an interview with WordPress co-founder, Matt Mullenweg</a> about the Gutenberg project.</li>\n <li><a href=\"https://make.wordpress.org/meta/2018/02/27/two-factor-authentication-on-wp-org/\">Two factor authentication is on its way to the WordPress.org network</a> — this will be a great improvement to the overall security of the project.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5613\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordCamp Incubator 2.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Feb 2018 22:53:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5577\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:343:\"WordCamps are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2450:\"<p><a href=\"https://central.wordcamp.org/\">WordCamps</a> are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over 120 WordCamps being hosted around the world in 2017.<br /></p>\n\n<p>Sometimes though, passionate and enthusiastic community members can’t pull together enough people in their community to make a WordCamp happen. To address this, we introduced <a href=\"https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/\">the WordCamp Incubator program</a> in 2016.<br /></p>\n\n<p>The goal of the incubator program is <strong>to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event.</strong> In 2016, members of <a href=\"https://make.wordpress.org/community/\">the global community team</a> worked with volunteers in three cities — Denpasar, Harare and Medellín — giving direct, hands-on assistance in making local WordCamps possible. All three of these WordCamp incubators <a href=\"https://make.wordpress.org/community/2017/06/30/wordcamp-incubator-report/\">were a great success</a>, so we're bringing the incubator program back for 2018.<br /></p>\n\n<p>Where should the next WordCamp incubators be? If you have always wanted a WordCamp in your city but haven’t been able to get a community started, this is a great opportunity. We will be taking applications for the next few weeks, then will get in touch with everyone who applied to discuss the possibilities. We will announce the chosen cities by the end of March.<br /></p>\n\n<p><strong>To apply, </strong><a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application\"><strong>fill in the application</strong></a><strong> by March 15, 2018.</strong> You don’t need to have any specific information handy, it’s just a form to let us know you’re interested. You can apply to nominate your city even if you don’t want to be the main organizer, but for this to work well we will need local liaisons and volunteers, so please only nominate cities where you live or work so that we have at least one local connection to begin.<br /></p>\n\n<p>We're looking forward to hearing from you!<br /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.9.4 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Feb 2018 16:17:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5559\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"WordPress 4.9.4 is now available. This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4. Four years ago with WordPress 3.7 “Basie”, we added the ability […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dion Hulse\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1823:\"<p>WordPress 4.9.4 is now available.</p>\n<p>This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4.</p>\n<p>Four years ago with <a href=\"https://wordpress.org/news/2013/10/basie/\">WordPress 3.7 “Basie”</a>, we added the ability for WordPress to self-update, keeping your website secure and bug-free, even when you weren’t available to do it yourself. For four years it’s helped keep millions of installs updated with very few issues over that time. Unfortunately <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">yesterdays 4.9.3 release</a> contained a severe bug which was only discovered after release. The bug will cause WordPress to encounter an error when it attempts to update itself to WordPress 4.9.4, and will require an update to be performed through the WordPress dashboard or hosts update tools.</p>\n<p>WordPress managed hosting companies who install updates automatically for their customers can install the update as normal, and we’ll be working with other hosts to ensure that as many customers of theirs who can be automatically updated to WordPress 4.9.4 can be.</p>\n<p>For more technical details of the issue, we’ve <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">posted on our Core Development blog</a>. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.4&group=component\">list of tickets</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.4</a> or visit Dashboard → Updates and click “Update Now.”</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5559\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.9.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2018 19:47:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5545\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:372:\"WordPress 4.9.3 is now available. This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the list of tickets and the changelog. Download WordPress 4.9.3 or visit Dashboard → Updates and click “Update Now.” Sites that support automatic […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Sergey Biryukov\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3421:\"<p>WordPress 4.9.3 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.3&group=component\">list of tickets</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/4.9?rev=42630&stop_rev=42521\">changelog</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.3</a> or visit Dashboard → Updates and click “Update Now.” Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.3:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu/\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/coleh/\">coleh</a>, <a href=\"https://profiles.wordpress.org/darko-a7/\">Darko A7</a>, <a href=\"https://profiles.wordpress.org/desertsnowman/\">David Cramer</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/lizkarkoski/\">lizkarkoski</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/ndavison/\">ndavison</a>, <a href=\"https://profiles.wordpress.org/nickmomrik/\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rishishah/\">rishishah</a>, <a href=\"https://profiles.wordpress.org/othellobloke/\">Ryan Paul</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui/\">Sami Ahmed Siddiqui</a>, <a href=\"https://profiles.wordpress.org/sayedwp/\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/manikmist09/\">Sultan Nasir Uddin</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"The Month in WordPress: January 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/02/the-month-in-wordpress-january-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Feb 2018 08:10:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5541\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project. WordPress 4.9.2 Security and Maintenance Release On January 16, WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3840:\"<p>Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress 4.9.2 Security and Maintenance Release</h2>\n\n<p>On January 16, <a href=\"https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/\">WordPress 4.9.2 was released</a> to fix an important security issue with the media player, as well as a number of other smaller bugs. This release goes a long way to smoothing out the 4.9 release cycle with the next point release, v4.9.3, <a href=\"https://make.wordpress.org/core/2018/01/31/wordpress-4-9-3-release-pushed-to-february-5th/\">due in early February</a>.</p>\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n<h2>Updated Plugin Directory Guidelines</h2>\n\n<p>At the end of 2017, <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">the guidelines for the Plugin Directory</a> received a significant update to make them clearer and expanded to address certain situations. This does not necessarily make these guidelines complete, but rather more user-friendly and practical; they govern how developers build plugins for the Plugin Directory, so they need to evolve with the global community that the Directory serves.</p>\n\n<p>If you would like to contribute to these guidelines, you can make a pull request to <a href=\"https://github.com/WordPress/wporg-plugin-guidelines\">the GitHub repository</a> or email <a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a>. You can also jump into the #pluginreview channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>Near the end of last year a lot of work was put into improving the standards in the WordPress core codebase and now <a href=\"https://make.wordpress.org/core/2017/11/30/wordpress-php-now-mostly-conforms-to-wordpress-coding-standards/\">the entire platform is at nearly 100% compliance with the WordPress coding standards</a>.</li>\n <li>Gutenberg, the new editor coming to WordPress core in the next major release, <a href=\"https://make.wordpress.org/core/2018/01/25/whats-new-in-gutenberg-25th-january/\">was updated to v2.1 this month</a> with some great usability and technical improvements.</li>\n <li>The Global Community Team is <a href=\"https://make.wordpress.org/community/2018/01/16/2018-goals-for-the-global-community-team-suggestions-time/\">taking suggestions for the goals of the Community program in 2018</a>.</li>\n <li><a href=\"https://online.wpcampus.org/\">WPCampus Online</a>, a digital conference focused on WordPress in higher education, took place on January 30. The videos of the event sessions will be online soon.</li>\n <li>A WordPress community member <a href=\"https://wptavern.com/new-toolkit-simplifies-the-process-of-creating-gutenberg-blocks\">has released a toolkit</a> to help developers build blocks for Gutenberg.</li>\n <li>The community team that works to improve the WordPress hosting experience is relatively young, but <a href=\"https://make.wordpress.org/hosting/2018/01/25/hosting-meeting-notes-january-10-2018/\">they have been making some great progress recently</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.9.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jan 2018 23:00:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5376\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"WordPress 4.9.2 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. An XSS vulnerability was discovered in the Flash fallback files in MediaElement, a library that is included with WordPress. Because the Flash files are no longer needed for […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Ian Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3946:\"<p>WordPress 4.9.2 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n<p>An XSS vulnerability was discovered in the Flash fallback files in MediaElement, a library that is included with WordPress. Because the Flash files are no longer needed for most use cases, they have been removed from WordPress.</p>\n\n<p>MediaElement has released a new version that contains a fix for the bug, and <a href=\"https://wordpress.org/plugins/mediaelement-flash-fallbacks/\">a WordPress plugin containing the fixed files</a> is available in the plugin repository.</p>\n\n<p>Thank you to the reporters of this issue for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://opnsec.com\">Enguerran Gillier</a> and <a href=\"https://widiz.com/\">Widiz</a>.</p>\n\n<p>21 other bugs were fixed in WordPress 4.9.2. Particularly of note were:</p>\n\n<ul>\n <li>JavaScript errors that prevented saving posts in Firefox have been fixed.</li>\n <li>The previous taxonomy-agnostic behavior of <code>get_category_link()</code> and <code>category_description()</code> was restored.</li>\n <li>Switching themes will now attempt to restore previous widget assignments, even when there are no sidebars to map.<br /></li>\n</ul>\n\n<p>The Codex has <a href=\"https://codex.wordpress.org/Version_4.9.2\">more information about all of the issues fixed in 4.9.2</a>, if you'd like to learn more.</p>\n\n<p><a href=\"https://wordpress.org/download/\"></a><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.2</a> or venture over to Dashboard → Updates and click "Update Now." Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.2:</p>\n\n<p><a href=\"https://profiles.wordpress.org/0x6f0/\">0x6f0</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/chasewg/\">chasewg</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara/\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/ionvv/\">ionvv</a>, <a href=\"https://profiles.wordpress.org/jaswrks/\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnschulz/\">johnschulz</a>, <a href=\"https://profiles.wordpress.org/juiiee8487/\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.<strong></strong><br /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5376\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: December 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/01/the-month-in-wordpress-december-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jan 2018 10:00:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5424\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:311:\"Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4711:\"<p>Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a close.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordCamp US 2017 Brings the Community Together</h2>\n\n<p>The latest edition of <a href=\"https://2017.us.wordcamp.org/\">WordCamp US</a> took place last month in Nashville on December 1-3. The event brought together over 1,400 WordPress enthusiasts from around the world, fostering a deeper, more engaged global community.</p>\n\n<p>While attending a WordCamp is always a unique experience, you can catch up on <a href=\"https://wordpress.tv/event/wordcamp-us-2017/\">the sessions on WordPress.tv</a> and look through <a href=\"https://www.facebook.com/pg/WordCampUSA/photos/?tab=albums\">the event photos on Facebook</a> to get a feel for how it all happened. Of course, <a href=\"https://wordpress.tv/2017/12/04/matt-mullenweg-state-of-the-word-2017/\">Matt Mullenweg’s State of the Word</a> talk is always one of the highlights at this event.</p>\n\n<p>The next WordCamp US will be held in Nashville again in 2018, but if you would like to see it hosted in your city in 2019 and 2020, then <a href=\"https://make.wordpress.org/community/2017/12/19/apply-to-host-wordcamp-us-2019-2020/\">you have until February 2 to apply</a>.</p>\n\n<h2>WordPress User Survey Data Is Published</h2>\n\n<p>Over the last few years, tens of thousands of WordPress users all over the world have filled out the annual WordPress user survey. The results of that survey are used to improve the WordPress project, but that data has mostly remained private. This has changed now and <a href=\"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\">the results from the last three surveys are now publicly available</a> for everyone to analyze.</p>\n\n<p>The data will be useful to anyone involved in WordPress since it provides a detailed look at who uses WordPress and what they do with it — information that can help inform product development decisions across the board.</p>\n\n<h2>New WordPress.org Team for the Tide Project</h2>\n\n<p>As announced at WordCamp US, <a href=\"https://make.wordpress.org/tide/2017/12/02/new-home/\">the Tide project is being brought under the WordPress.org umbrella</a> to be managed and developed by the community.</p>\n\n<p>Tide is a series of automated tests run against every plugin and theme in the directory to help WordPress users make informed decisions about the plugins and themes that they choose to install.</p>\n\n<p>To get involved in developing Tide, jump into the #tide channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/tide/\">the Tide team blog</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>If you’re following the development of Gutenberg, or if you want a primer on where it’s headed, then <a href=\"https://wordpress.tv/2017/12/10/morten-rand-hendriksen-gutenberg-and-the-wordpress-of-tomorrow/\">Morten Rand-Hendriksen’s talk from WordCamp US</a> is a must watch.</li>\n <li>The annual surveys for WordPress <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-member-survey\">meetup members</a> and <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-organizer-survey\">meetup organizers</a> are available for people to fill out — if you’re involved in or attend your local meetup group then be sure to complete those.</li>\n <li>10up has <a href=\"https://distributorplugin.com/\">a brand new plugin in beta</a> that will assist with powerful and flexible content publishing and syndication across WordPress sites.</li>\n <li><a href=\"https://make.wordpress.org/community/2017/12/07/should-we-change-the-default-wordcamp-theme-to-campsite-2017/\">The Community Team is exploring a move</a> to make the recently developed CampSite theme the default theme for all new WordCamp websites. This is the theme that was developed and employed for <a href=\"https://2017.europe.wordcamp.org\">WordCamp Europe 2017</a>.</li>\n <li>The team working on the multisite features of WordPress Core has recently published <a href=\"https://make.wordpress.org/core/2017/12/19/multisite-roadmap-published/\">their planned roadmap for development</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 Apr 2018 04:32:33 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 12 Apr 2018 20:12:01 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'),(86411,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1523896353','no'),(86412,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1523853153','no'),(86413,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1523896354','no'),(86414,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Russell’s Treadmill\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2018/04/russells-treadmill/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:704:\"<p>From <a href=\"https://www.amazon.com/dp/B015D3X0YG\">Bertrand Russell’s A Conquest of Happiness</a>.</p>\n\n<blockquote class=\"wp-block-quote\">\n <p>It is very singular how little men seem to realize that they are not caught in the grip of a mechanism from which there is no escape, but that the treadmill is one upon which they remain merely because they have not noticed that it fails to take them up to a higher level.</p>\n</blockquote>\n\n<p>He also says later, “There are two motives for reading a book: one, that you enjoy it; the other, that you can boast about it.” <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f602.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Apr 2018 20:22:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Dev Blog: GDPR Compliance Tools in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5728\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2018/04/gdpr-compliance-tools-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3913:\"<p>GDPR compliance is an important consideration for all WordPress websites. The GDPR Compliance team is looking for help to test the privacy tools that are currently being developed in core. </p>\n\n<h2>What is GDPR?</h2>\n\n<p>GDPR stands for <a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\">General Data Protection Regulation</a> and is intended to strengthen and unify data protection for all individuals within the European Union. Its primary aim is to give control back to the EU residents over their personal data. <br /></p>\n\n<p>Why the urgency? Although the GDPR was introduced two years ago, it becomes enforceable starting May 25, 2018.</p>\n\n<h2>Make WordPress GDPR Compliance Team</h2>\n\n<p>Currently, the GDPR Compliance Team understands that helping WordPress-based sites become compliant is a large and ongoing task. The team is focusing on creating a comprehensive core policy, plugin guidelines, privacy tools and documentation. All of this requires your help.<br /></p>\n\n<p>The GDPR Compliance Team is focusing on four main areas:</p>\n\n<ul>\n <li>Add functionality to assist site owners in creating comprehensive privacy policies for their websites.</li>\n <li>Create guidelines for plugins to become GDPR ready.</li>\n <li>Add administration tools to facilitate compliance and encourage user privacy in general.</li>\n <li>Add documentation to educate site owners on privacy, the main GDPR compliance requirements, and on how to use the new privacy tools.</li>\n</ul>\n\n<h2>Don’t we already have a privacy policy?</h2>\n\n<p>Yes and no. That said, The GDPR puts tighter guidelines and restrictions. Though we have many plugins that create privacy pages, we need means to generate a unified, comprehensive privacy policy. We will need tools for users to easily come into compliance.<br /></p>\n\n<p>Site owners will be able to create GDPR compliant privacy policy in three steps:</p>\n\n<ol>\n <li>Adding a dedicated page for the policy.<br /></li>\n <li>Adding privacy information from plugins.</li>\n <li>Reviewing and publishing the policy.</li>\n</ol>\n\n<p>A new “postbox” will be added to the Edit Page screen when editing the policy. All plugins that collect or store user data will be able to add privacy information there. In addition it will alert the site owners when any privacy information changes after a plugin is activated, deactivated, or updated.<br /></p>\n\n<p>There is a new functionality to confirm user requests by email address. It is intended for site owners to be able to verify requests from users for displaying, downloading, or anonymizing of personal data.<br /></p>\n\n<p>A new “Privacy” page is added under the “Tools” menu. It will display new, confirmed requests from users, as well as already fulfilled requests. It will also contain the tools for exporting and anonymizing of personal data and for requesting email confirmation to avoid abuse attempts.<br /></p>\n\n<p>New section on privacy will be added to the <a href=\"https://developer.wordpress.org/plugins/\">Plugin Handbook</a>. It will contain some general information on user privacy, what a plugin should do to be compliant, and also tips and examples on how to use the new privacy related functionality in WordPress.<br /></p>\n\n<p>The new privacy tools are scheduled for release at the end of April or beginning of May 2018.</p>\n\n<h2>How can you get involved?</h2>\n\n<p>We would love to have your help. The first step is awareness and education. For more information about the upcoming privacy tools see <a href=\"https://make.wordpress.org/core/2018/03/28/roadmap-tools-for-gdpr-compliance/\">the roadmap</a>.</p>\n\n<p>If you would like to get involved in building WordPress Core and testing the new privacy tools, please join the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress</a> Slack group.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Apr 2018 20:11:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: WPWeekly Episode 312 – Dragon Drop, WordPress Accessibility Statement, and WooCommerce GDPR\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=79862&preview=true&preview_id=79862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/wpweekly-episode-312-dragon-drop-wordpress-accessibility-statement-and-woocommerce-gdpr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1888:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I start the show by sharing our thoughts on Mark Zuckberberg’s congressional hearing. We then discuss what’s new in Gutenberg 2.6 and describe our user experience. We let you know what’s in WooCommerce 3.3.5 and discuss what the development team is doing to prepare for GDPR compliance.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/gutenberg-2-6-introduces-drag-and-drop-block-sorting\">Gutenberg 2.6 Introduces Drag and Drop Block Sorting</a><br />\n<a href=\"https://wptavern.com/theme-review-changes-place-more-onus-onto-theme-authors\">Theme Review Changes Place More Onus Onto Theme Authors</a><br />\n<a href=\"https://wordpress.org/about/accessibility/\">WordPress Accessibility Statement</a><br />\n<a href=\"https://woocommerce.wordpress.com/2018/04/10/woocommerce-3-3-5-fix-release-notes/\">WooCommerce 3.3.5 Released</a><br />\n<a href=\"https://woocommerce.wordpress.com/2018/04/10/how-were-tackling-gdpr-in-woocommerce-core/\">How WooCommerce is tackling GDPR</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://atomicblocks.com/introducing-the-atomic-blocks-plugin-and-theme/\">AtomBlocks by Mike McAlister</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 18th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #312:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Apr 2018 01:05:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"HeroPress: Growing Up Rural\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2503\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://heropress.com/growing-up-rural/#utm_source=rss&utm_medium=rss&utm_campaign=growing-up-rural\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2947:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2015/10/ImpactForOthers-HeroPress-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I hope and pray that in some small way I\'ll be able to take what I\'ve learned and make an impact for others.\" /><p>This week’s throwback essay is titled “<a href=\"https://heropress.com/essays/i-dont-know-anything-and-thats-ok/\">I don’t know anything, and that’s ok</a>“. It was written back in 2015 by my friend Kyle. He and I grew up in similar circumstances; far from a hub of civilization, in a relatively economically depressed area, without the best education opportunities.</p>\n<p>Yet he and I both managed to find the web, dive in, and find home. We support our families and find joy in the work we produce. I’m not sure there’s a better way to live than that.</p>\n<p>Check out Kyle’s essay and let him know what you think.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/i-dont-know-anything-and-thats-ok/\">I Don’t Know Anything and That’s OK</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Growing Up Rural\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Growing%20Up%20Rural&via=heropress&url=https%3A%2F%2Fheropress.com%2Fgrowing-up-rural%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Growing Up Rural\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fgrowing-up-rural%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fgrowing-up-rural%2F&title=Growing+Up+Rural\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Growing Up Rural\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/growing-up-rural/&media=https://heropress.com/wp-content/uploads/2015/10/ImpactForOthers-HeroPress-150x150.jpg&description=Growing Up Rural\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Growing Up Rural\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/growing-up-rural/\" title=\"Growing Up Rural\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/growing-up-rural/\">Growing Up Rural</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Apr 2018 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Theme Review Changes Place More Onus Onto Theme Authors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=79771\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/theme-review-changes-place-more-onus-onto-theme-authors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2093:\"<p>The WordPress Theme Review team has <a href=\"https://make.wordpress.org/themes/2018/04/09/changes-in-theme-review-process/\">implemented changes</a> that simplify the process and places more responsibility onto theme authors. Theme reviewers now only need to check the following items to pass a theme.</p>\n\n<ul>\n <li>Licensing</li>\n <li>Malicious or egregious stuff</li>\n <li>Content Creation</li>\n <li>Security</li>\n</ul>\n\n<p>Although the bar to pass a theme is significantly lower, theme authors are still expected to follow the <a href=\"https://make.wordpress.org/themes/handbook/review/required/\">required</a> and <a href=\"https://make.wordpress.org/themes/handbook/review/recommended/\">recommended</a> requirements listed in the theme handbook.</p>\n\n<p>Moderators will check themes after they’ve gone live to make sure the author is following guidelines. If a moderator discovers any issues, a request will be made to the theme author to correct them. Failure to do so could lead to a temporary or permanent suspension.</p>\n\n<p>Justin Tadlock <a href=\"https://make.wordpress.org/themes/2018/04/09/changes-in-theme-review-process/#comment-43128\">clarified</a> in the comments examples of egregious issues.</p>\n\n<ul>\n <li>Illegal</li>\n <li>Dishonest</li>\n <li>Morally offensive</li>\n <li>PHP Errors</li>\n</ul>\n\n<p>In the past two years, The Theme Review Team has battled the theme review queue with moderate success. <a href=\"https://wptavern.com/wordpress-theme-review-team-making-progress-on-clearing-out-1000-review-backlog\">In early 2017</a>, the number of themes in the queue dropped below 200. Although there has been some work on automating the process, it’s largely reliant on humans.</p>\n\n<p>Even though it hasn’t been updated in more than a year, theme authors are highly encouraged to use the <a href=\"https://wordpress.org/plugins/theme-check/\">Theme Check plugin</a> before submitting themes for review.</p>\n\n<p>With a simplified process to get a theme live, reviewers are hoping it will free them up to focus on larger projects.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Apr 2018 23:45:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Gutenberg 2.6 Introduces Drag and Drop Block Sorting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=79658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/gutenberg-2-6-introduces-drag-and-drop-block-sorting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1729:\"<p><a href=\"https://wordpress.org/plugins/Gutenberg/\">Gutenberg 2.6</a> is available for download and with it, comes a new way of sorting blocks. In addition to using up and down arrows, this version introduces the ability to sort blocks by <a href=\"https://github.com/WordPress/gutenberg/issues/6041\">dragging and dropping</a>.</p>\n\n<p>If you hover the cursor over the up and down arrows on the left side of a block, you’ll see a hand icon. Simply click, hold, and drag the block up or down below or above the blue indicator.</p>\n\n\n \n\n\n<p>In my limited testing, I found drag and drop to be hit or miss. Sometimes, when I try to drag and drop a block, the blue line doesn’t show up.</p>\n\n<p>The hand icon for the cursor is different for the top and bottom of the block. You can drag a block by hovering over the bottom of it but you can’t do it from the top.</p>\n\n<img />\n Hovering the cursor at the top of the block\n\n\n<img />\n Hovering the cursor at the bottom of the block\n\n\n<p>I also found it difficult to add a new block manually. For example, when I add a paragraph block, I don’t see the Plus icon to create a new block underneath it anymore.</p>\n\n<p>Pressing enter at the end of a paragraph creates a new Paragraph block automatically. But I don’t know how to transform it into an image block. I’ll need to do more testing to figure out what’s going on. <br /></p>\n\n<p>There’s a host of <a href=\"https://make.wordpress.org/core/2018/04/05/whats-new-in-gutenberg-5th-april/\">other improvements and bug fixes </a>in this release, some of which I covered <a href=\"https://wptavern.com/an-update-to-my-gutenberg-experience\">in this post</a>. <br />. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Apr 2018 00:09:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Post Status: Designing the news — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=45154\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://poststatus.com/designing-the-news-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1904:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p><span>In this episode, Brian and Brian discuss a variety of news topics spanning design, development, and business. Tune in to learn about the history of WordPress and the web, the newest TechCrunch redesign, a WordCamp for WordCamp organizers, and more.</span></p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://zeen101.com/for-developers/leakypaywall/\">Leaky Paywall</a></li>\n<li><a href=\"https://designintech.report/\">2018 Design in Tech report</a></li>\n<li><a href=\"https://gutenberg.courses/development/\">Gutenberg Development Course</a></li>\n<li><a href=\"https://techcrunch.com/2018/03/13/welcome-to-the-new-techcrunch/\">TechCrunch redesign</a></li>\n<li><a href=\"https://thehistoryoftheweb.com/the-story-of-wordpress/\">WordPress turns 15</a>, via History of the Web</li>\n<li><a href=\"https://make.wordpress.org/community/2018/04/03/want-to-help-organize-a-wordcamp-for-organizers/\">Proposal for a WordCamp for WordCamp organizers </a></li>\n</ul>\n<h3>Sponsor: Gravity Forms</h3>\n<p><a href=\"http://www.gravityforms.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Gravity Forms</a> makes the best web forms on the planet. Over a million WordPress sites are already using Gravity Forms. Is yours? Thanks to Gravity Forms for being a Post Status partner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Apr 2018 18:36:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WPTavern: An Update to My Gutenberg Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=79564\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wptavern.com/an-update-to-my-gutenberg-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2508:\"<p>Not long after I published <a href=\"https://wptavern.com/my-gutenberg-experience-thus-far\">my experience with Gutenberg</a>, developers reached out to me to work on some of the issues I mentioned. Riad Benguella <a href=\"https://github.com/WordPress/gutenberg/pull/5902\">figured out</a> why meta boxes were not collapsing or expanding.</p>\n\n<p>It turns out that some meta boxes depend on the post script which has a side effect of calling the window.postboxes.add_postbox_toggles( postType ) twice, causing meta boxes to break.</p>\n\n<p>Gutenberg 2.6 <a href=\"https://make.wordpress.org/core/2018/04/05/whats-new-in-gutenberg-5th-april/\">released earlier this week</a>, fixes the issue and all meta boxes function properly again. This also fixes the issue I had with the Telegram for WordPress plugin. <br /></p>\n\n<p><a href=\"https://wordpress.org/plugins/public-post-preview/\">Public Post Preview</a> still doesn’t work in Gutenberg but the plugin’s developer, Dominik Schilling, shared some experiments he has conducted with adding support for Gutenberg on Twitter.</p>\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Can\'t wait for seeing Gutenberg in WordPress core. So many new possibilities. Even for Public Post Preview (<a href=\"https://t.co/Xsw9hugxKT\">https://t.co/Xsw9hugxKT</a>). With just a few lines I was able to create this: <a href=\"https://t.co/fxyuBIMPOl\">pic.twitter.com/fxyuBIMPOl</a></p>— Dominik Schilling <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f30a.png\" alt=\"?\" class=\"wp-smiley\" /> (@ocean90) <a href=\"https://twitter.com/ocean90/status/980420608822562816?ref_src=twsrc%5Etfw\">April 1, 2018</a></blockquote>\n\n\n<p>In the preview video, you can see Public Post Preview’s options added to the sidebar and in addition to generating a link, you can choose when that URL expires which is better than what’s currently available in the plugin.</p>\n\n<p>I mentioned how Tags would sometimes disappear and there overall behavior was inconsistent. This <a href=\"https://github.com/WordPress/gutenberg/pull/5913\">pull request </a>that made it into Gutenberg 2.6, fixes the issue by only including the term in the Tag selector if it’s known.</p>\n\n<p>Although I’m still bummed that certain plugins are not yet compatible with Gutenberg, I’m pretty happy that two of the major pain points I experienced have been fixed. Thanks to Riad, Tammie Lister, and others for helping to solve these problems so quickly. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Apr 2018 21:29:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: A WordCamp for Organizers Is in the Planning Stages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=79513\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/a-wordcamp-for-organizers-is-in-the-planning-stages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2684:\"<p>Last year, Drew Jaynes and Carol Stambaugh <a href=\"https://make.wordpress.org/community/2017/08/16/proposed-event-wordcamp-for-wordcamp-organizers/\">proposed</a> a new WordCamp event geared towards organizers to the WordPress Community Team. After fleshing out the details and discussing the idea over the course of seven months, the duo <a href=\"https://make.wordpress.org/community/2018/04/03/want-to-help-organize-a-wordcamp-for-organizers/\">has announced</a> that a WordCamp for Organizers is officially on the table.</p>\n\n<p>The goal of the event is to provide an opportunity for meetup and WordPress event organizers to share their experience with others in the community. The plan is to host a one-day event a day or two before <a href=\"https://2018.us.wordcamp.org/\">WordCamp US</a> in Nashville, TN, later this year.</p>\n\n<p>“The idea for WordCamp for Organizers – what some of us affectionately refer to as ‘dotOrganize’ – was really borne out of many conversations I’ve had over the years with others in the WordPress community lamenting the lack of a ready knowledge sharing opportunity between event organizers,” Jaynes said.</p>\n\n<p>“One common thread seemed to be the idea of common lessons learned, and how awesome it would be to just have an event for organizers to get together and swap tips and tricks. </p>\n\n<p>“We’re all here organizing the same community, maybe we should get together and trade notes! And so we now have a new topic-based WordCamp just for organizers. </p>\n\n<p>“It’s kind of meta – organizing a WordCamp for Organizers, but I really feel like this could be a boon for anybody currently organizing or looking to start organizing in WordPress. Exciting!”</p>\n\n<p>Some of the session topics that could be presented on include:</p>\n\n<ul>\n <li>Spreading the word about your community events</li>\n <li>Tips for wrangling speakers, volunteers, and sponsors</li>\n <li>Conflict resolution among organizing teams</li>\n <li>How to respond to a code of conduct issue</li>\n <li>Finding and using official organizing tools and resources<br /></li>\n</ul>\n\n<p>The team is seeking volunteers who can spend 2-4 hours per week to help organize the event. Although it’s focused on organizers, those who have attended many conferences, including WordCamps, with little event organizing experience, are encouraged to join the team.</p>\n\n<p>If you’re interested in volunteering, please leave a comment on the <a href=\"https://make.wordpress.org/community/2018/04/03/want-to-help-organize-a-wordcamp-for-organizers/\">official announcement post</a>. </p>\n\n<p><br /></p><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Apr 2018 00:22:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: Jetpack 6.0 Takes Steps Towards GDPR Compliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=79459\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/jetpack-6-0-takes-steps-towards-gdpr-compliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1148:\"<p>Jetpack 6.0 <a href=\"https://jetpack.com/2018/04/03/jetpack-6-0/\">is available</a> for upgrade. It comes with improvements to the social media icons widget, enhanced brute force protection, and better compatibility between WooCommerce and Jetpack.</p>\n\n<p>Its headlining features though are privacy related as the <a href=\"https://www.eugdpr.org/\">General Data Protection Regulation</a> (GDPR) is set to go into effect May 25th. In 6.0, Jetpack has a dedicated privacy settings page that links to privacy documents and includes a way to opt-out of activity tracking.</p>\n\n<p>These settings can be accessed by clicking the Privacy link at the bottom of the Jetpack Dashboard page. </p>\n\n<img />\n Jetpack 6.0 Privacy Settings\n\n\n<p>The '<a href=\"https://jetpack.com/support/what-data-does-jetpack-sync/\">What Data Does Jetpack Sync</a>' page outlines what data is used, how it's used, the relationship it has with the WordPress mobile apps, and provides an inside look at how Jetpack works.</p>\n\n<p>These are the first steps towards GDPR compliance with more updates planned before the regulation goes into effect next month. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Apr 2018 23:20:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: WPWeekly Episode 311 – Jetpack 6.0, WordPress 4.9.5, and A WordCamp for Organizers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=79447&preview=true&preview_id=79447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/wpweekly-episode-311-jetpack-wordpress-4-9-5-and-a-wordcamp-for-organizers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1628:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss a <a href=\"https://glueckpress.com/9336/amp-and-wordpress/\">great article</a> published by Caspar Hübinger on AMP and WordPress. We cover what’s new in WordPress 4.9.5, Jetpack 6.0, and a WordCamp geared toward organizers.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-4-9-5-squashes-25-bugs\">WordPress 4.9.5 Squashes 25 Bugs</a><br />\n<a href=\"https://wptavern.com/try-gutenberg-prompt-pushed-back-to-a-later-release\">‘Try Gutenberg’ Prompt Pushed Back to A Later Release</a><br />\n<a href=\"https://jetpack.com/2018/04/03/jetpack-6-0/\">Jetpack 6.0 Released</a><br />\n<a href=\"https://make.wordpress.org/community/2018/04/03/code-of-conduct-survey/\">Code of Conduct Survey</a><br />\n<a href=\"https://make.wordpress.org/community/2018/04/03/want-to-help-organize-a-wordcamp-for-organizers/\">Want to Help Organize a WordCamp for Organizers?</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 11th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #311:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Apr 2018 01:15:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"HeroPress: The Year I Got Cancer Was The Year My WordPress Business Took Off\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:204:\"https://heropress.com/essays/the-year-i-got-cancer-was-the-year-my-wordpress-business-took-off/#utm_source=rss&utm_medium=rss&utm_campaign=the-year-i-got-cancer-was-the-year-my-wordpress-business-took-off\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8809:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/04/040418-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Take care of yourselves and of each other, it\'s very important.\" /><p>In 2010 I was beginning to take on client work creating WordPress web sites when I was diagnosed with ovarian cancer. Ironically, at 43 years old I was more fit and healthy than I had ever been in my entire life. I had been running road marathons and trail ultra marathons for a few years leading up to my diagnosis. Good thing too, because surgery and treatment were obviously very tough.</p>\n<p>I was transitioning my design studio from analog to digital. Previously, I was working as a professional artist and illustrator creating commission portraiture and college mascot illustrations with some moderate successes. My background is in Fine Art and Design. I studied Drawing, Sculpture, & Time Arts. (2D, 3D & 4D – 4D can be described as: Length, width, height, and time/ motion) Naturally, as a Time Arts artist/illustrator I love the web! I love designing for the web and mobile too. Web work is immediately gratifying. I do design for both the web and print but I have always felt drawn to the web as it is more accessible, more fluid, dynamic, interconnected, animated, media rich, and well … if you are reading this then you already get the picture. <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<blockquote><p>To get through treatment it was important to me that I still work every day.</p></blockquote>\n<p>Some days it was just a couple hours in the afternoon but it really helped me to cope and endure unplanned surgery and many painful chemotherapy treatments. I had recently completed a couple of websites with the help of my mentor Jerry Turk. Those sites had good reach. I mean they were the kind of sites that groups of people used and managed so I got some attention for the work and word of mouth spread locally.</p>\n<p>It was while getting through that period of treatment and the shock of a devastating diagnosis that my digital design agency really got legs. It could not have happened at a better time. So, my studio, C&D Studios – <a href=\"https://CandDStudios.com\">https://CandDStudios.com</a> continued it’s move towards being 100% digital. No more analog photography and not much more drawing at the drawing table either. Now my work was nearly 100% focused on screens and it would also begin to pay the bills. That was eight years ago. I was very fortunate to learn using reliable frameworks, themes, plug-ins, and hosts that would also stand the test of time. Thank you Genesis Framework, StudioPress and Gravity Forms to name a few…</p>\n<p>Fast forward to 2016 after having been cancer free all those years and cranking out a lot of agency work, I had a cancer reoccurrence. I never wanted cancer to be part of my story and I tried to deny or overcome it in all ways but it had resurfaced in October of 2016. Professionally, I was involved in collaborating on very large scale enterprise sites with teams. I was spending the year testing the waters at a new level of production. It was not good timing to require another surgery and 18 more rounds of chemotherapy. Fortunately, I found support in the community from other designers and developers whom helped me to the finish lines with 3 large projects in areas of e-commerce, college membership and enterprise site work -one with a large volume of SVG animations. After surgery, in February of 2017 I completed 18 rounds of chemotherapy treatments.</p>\n<blockquote><p>I have survived and am cancer free once again!</p></blockquote>\n<p>While going through treatment the second time I was not really focused on what good thing will I be able to grow towards professionally. Honestly, when you go through these things in life – you just spend your energy getting through as best as you can. I think it is worth noting here that while a positive attitude is great and it can improve a patient’s overall experience. Please don’t tell people they will survive cancer because of their positive attitude. Cancer is horrible, it does not discriminate and when people can’t beat a disease with their mental attitude they end up blaming themselves unnecessarily. That is not good. That is not what people intend when then try to offer support in that way but that is something I wanted to share.</p>\n<p>Now I have landed on the other side of treatment again and as I reflect, it’s been a really epic year! Our WordPress community has been open and supportive, welcoming me at conferences, online, and in slack groups, whether I had hair, energy, or resources – always welcoming and always encouraging. Over the years I have made some wonderful friends through WordPress! Some of us have been at this for a long time and we now have many shared experiences and skills.</p>\n<h3>Having Survived Again I’m Launching a WordPress Product</h3>\n<p>Having survived again, and having been inspired at PressNomics in Tempe last spring, I’m busy launching a mobile product/service with my team Dr. Kendra Remington and Rita Best called <a href=\"https://docswithapps.com\">Docs With Apps</a>.</p>\n<p>I still accept some client work, and some retainer work but I’m pretty selective about the projects we work on “in house.”</p>\n<p>I love SVG animation work so in 2018 I’m overjoyed to be doing more contracted SVG animation work with my collaborator Jackie D’Elia. Hit us up!!</p>\n<p>These are some very wonderful times in technology and within the Internet of things. I feel very grateful to have been able to ride the digital wave into the present and future. At WCUS in Nashville I began the process of contributing to make WordPress after having spent many years empowering others with it.</p>\n<p>When I was young I needed a way to get my portfolio on line and that is how I got started. Thank you for the opportunity to share my story, to publicly thank my husband Dominic, my family, and friends too. The future is going to be awesome!</p>\n<p>Take care of yourself and of each other, it’s very important.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: The Year I Got Cancer Was The Year My WordPress Business Took Off\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Year%20I%20Got%20Cancer%20Was%20The%20Year%20My%20WordPress%20Business%20Took%20Off&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fthe-year-i-got-cancer-was-the-year-my-wordpress-business-took-off%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Year I Got Cancer Was The Year My WordPress Business Took Off\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fthe-year-i-got-cancer-was-the-year-my-wordpress-business-took-off%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fthe-year-i-got-cancer-was-the-year-my-wordpress-business-took-off%2F&title=The+Year+I+Got+Cancer+Was+The+Year+My+WordPress+Business+Took+Off\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Year I Got Cancer Was The Year My WordPress Business Took Off\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/the-year-i-got-cancer-was-the-year-my-wordpress-business-took-off/&media=https://heropress.com/wp-content/uploads/2018/04/040418-150x150.jpg&description=The Year I Got Cancer Was The Year My WordPress Business Took Off\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Year I Got Cancer Was The Year My WordPress Business Took Off\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/the-year-i-got-cancer-was-the-year-my-wordpress-business-took-off/\" title=\"The Year I Got Cancer Was The Year My WordPress Business Took Off\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/the-year-i-got-cancer-was-the-year-my-wordpress-business-took-off/\">The Year I Got Cancer Was The Year My WordPress Business Took Off</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Apr 2018 12:00:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cathi Bosco\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WPTavern: WordPress 4.9.5 Squashes 25 Bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=79399\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wptavern.com/wordpress-4-9-5-squashes-25-bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:940:\"<p>WordPress 4.9.5 <a href=\"https://wordpress.org/news/2018/04/wordpress-4-9-5-security-and-maintenance-release/\">is available</a> for download and is a maintenance and security release. WordPress 4.9.4 and earlier versions are affected by three security issues. The following security hardening changes are in 4.9.5.</p>\n\n<ul>\n <li>Localhost is no longer treated as the same host by default.<br /></li>\n <li>Safe redirects are used when redirecting the login page if SSL is forced.</li>\n <li>Versions strings are correctly escaped for use in generator tags.</li>\n</ul>\n\n<p>Twenty-five bugs are fixed in this release including, improve compatibility with PHP 7.2, previous styles on caption shortcodes are restored, and clearer error messages. To see a full list of changes along with their associated trac tickets, check out <a href=\"https://make.wordpress.org/core/2018/04/02/wordpress-4-9-5/\">the detailed release post</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Apr 2018 23:02:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Dev Blog: WordPress 4.9.5 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2018/04/wordpress-4-9-5-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6336:\"<p>WordPress 4.9.5 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n<p>WordPress versions 4.9.4 and earlier are affected by three security issues. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.5:</p>\n\n<ol>\n <li>Don't treat <code>localhost</code> as same host by default.</li>\n <li>Use safe redirects when redirecting the login page if SSL is forced.</li>\n <li>Make sure the version string is correctly escaped for use in generator tags.</li>\n</ol>\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">coordinated security disclosure</a>: <a href=\"https://profiles.wordpress.org/xknown\">xknown</a> of the WordPress Security Team, <a href=\"https://hackerone.com/nitstorm\">Nitin Venkatesh (nitstorm)</a>, and <a href=\"https://twitter.com/voldemortensen\">Garth Mortensen</a> of the WordPress Security Team.</p>\n\n<p>Twenty-five other bugs were fixed in WordPress 4.9.5. Particularly of note were:</p>\n\n<ul>\n <li>The previous styles on caption shortcodes have been restored.</li>\n <li>Cropping on touch screen devices is now supported.</li>\n <li>A variety of strings such as error messages have been updated for better clarity.</li>\n <li>The position of an attachment placeholder during uploads has been fixed.</li>\n <li>Custom nonce functionality in the REST API JavaScript client has been made consistent throughout the code base.</li>\n <li>Improved compatibility with PHP 7.2.</li>\n</ul>\n\n<p><a href=\"https://make.wordpress.org/core/2018/04/03/wordpress-4-9-5/\">This post has more information about all of the issues fixed in 4.9.5 if you'd like to learn more</a>.</p>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.5</a> or venture over to Dashboard → Updates and click \"Update Now.\" Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.5:</p>\n\n<p><a href=\"https://profiles.wordpress.org/1265578519-1/\">1265578519</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alexgso/\">alexgso</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrei0x309/\">andrei0x309</a>, <a href=\"https://profiles.wordpress.org/antipole/\">antipole</a>, <a href=\"https://profiles.wordpress.org/aranwer104/\">Anwer AR</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/blair-jersyer/\">Blair jersyer</a>, <a href=\"https://profiles.wordpress.org/bandonrandon/\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/codegrau/\">codegrau</a>, <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/electricfeet/\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/ericmeyer/\">ericmeyer</a>, <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/junaidkbr/\">Junaid Ahmed</a>, <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mrmadhat/\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/nandorsky/\">nandorsky</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/qcmiao/\">qcmiao</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/ravanh/\">RavanH</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sebastienthivinfocom/\">Sebastien SERRE</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\">Thomas Vitale</a>, <a href=\"https://profiles.wordpress.org/kwonye/\">Will Kwon</a>, and <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Apr 2018 19:56:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: ‘Try Gutenberg’ Prompt Pushed Back to A Later Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=79273\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/try-gutenberg-prompt-pushed-back-to-a-later-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4312:\"<p>Last week, <a href=\"https://wptavern.com/in-wordpress-4-9-5-users-will-be-two-clicks-away-from-installing-and-activating-gutenberg-from-the-dashboard\">we reported</a> that WordPress 4.9.5 would ship with a call-out prompt that asks users if they want to try the new editor experience.</p>\n\n<p>Within the comments of the post, Gary Pendergast, who works for Automattic, is a WordPress core contributor, and a lead developer on the Gutenberg project, <a href=\"https://wptavern.com/in-wordpress-4-9-5-users-will-be-two-clicks-away-from-installing-and-activating-gutenberg-from-the-dashboard#comment-246119\">informed us</a> that the prompt would not be in WordPress 4.9.5. Instead, it will ship in a later version once it has gone through a few more refinements.</p>\n\n<blockquote class=\"wp-block-quote\">\n <p>Change of plans, this won’t be happening in the 4.9.5 release: there are still a few issues we’d like to fix up the callout happens, they won’t be done in time for the 4.9.5 release. I expect there will be a smaller 4.9.6 release that contains this callout, and any bugfixes that happen to be ready.</p><cite>Gary Pendergast</cite></blockquote>\n\n<p>Reverting the call-out has <a href=\"https://core.trac.wordpress.org/ticket/41316\">extended the conversation</a> surrounding its implementation. Jadon N who works for InMotion hosting and is a contributor to the <a href=\"https://make.wordpress.org/chat/\">#hosting-community slack channel</a>, says the hosting-community group is working on ideas to help test popular plugins for Gutenberg compatibility.</p>\n\n<blockquote class=\"wp-block-quote\">\n <p>We have been working to expand our collection of data about how well plugins function with Gutenberg. To help with that effort, we would like to explore using feedback collected from WordPress users through the Try Gutenberg effort to add to the existing database on WordPress plugin compatibility if that could be worked out. </p>\n <p>The goal of this project is to make sure everyone can use Gutenberg without having to worry about plugin incompatibilities.</p><cite>Jadon N</cite></blockquote>\n\n<p>The <a href=\"https://plugincompat.danielbachhuber.com/\">Gutenberg Plugin Compatibility Database project</a> launched by Daniel Bachhuber last month attempts to determine which popular plugins are already compatible with Gutenberg by having volunteers test them in a sandboxed environment.</p>\n\n<p>Out of the 4,213 plugins in the database, 84% have an unknown compatibility status. Out of 610 plugins that have been tested, 82% don't include editor functionality.</p>\n\n<p>Pendergast <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:92\">supports the idea</a> of hosts collecting a wide range of testing data and turning it into actionable items for the team to work on. There's also been some discussion on creating snapshots of plugin compatibility and filtering those results into Bachhuber's project.</p>\n\n<p>Chris Lema, Vice President of Products at LiquidWeb, <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:98\">responded</a> in the trac ticket with a suggestion that the team place as much emphasis on the Learn More and Report Issues sections as the Try Gutenberg message. He also added a prototype screenshot of what the call-out could look like. <br /></p>\n\n<img />\n Gutenberg Call Out Prototype by Chris Lema\n\n\n<p>\"The reality is that people don't read a lot, so people may not fully grasp the 'testing' part given the proposed design,\" Lema said. \"When there are equal weight to the design, the message also carries with it the same equality.\"</p>\n\n<p>One of the best suggestions I've read comes <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:98\">from Bachhuber</a>. He suggests displaying the prompt to a small percentage of WordPress sites to prevent thousands of users from re-reporting known issues with Gutenberg. It would also help lessen the load on the support forums.</p>\n\n<p>One of my main concerns with the call-out is the lack of upfront information to the user that it is beta software and it could cause adverse affects on their site. Lema's prototype does a great job of informing the user of this possibility and a link to known issues is a great enhancement. What do you think?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Apr 2018 00:13:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Goose-down Nape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48011\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2018/04/goose-down-nape/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1378:\"<p>There was a <a href=\"https://www.nytimes.com/2018/03/28/magazine/poem-the-nod.html\">beautiful poem by Kayo Chingonyi in the New York Magazine this week</a> titled The Nod:</p>\n\n<blockquote class=\"wp-block-quote\">\n <p>When we’re strangers that pass each other<br />in the street, it will come down to this tilt<br />of the head — acknowledging another<br />version of events set in a new-build<br />years from now, a mess of a place filled<br />with books and records, our kids thick as thieves<br />redefining all notions of mischief.</p>\n <p>Perhaps our paths will cross in a city<br />of seven hills as the light draws your face<br />out from the bliss of anonymity.<br />Maybe you’ll be stroking the goose-down nape<br />of a small child with eyes the exact shade<br />of those I met across a room at the start<br />of this pain-in-the-heart, this febrile dance.</p>\n</blockquote>\n\n<p>When I hear \"seven hills\" my mind immediately goes to Rome, then San Francisco, but <a href=\"https://en.wikipedia.org/wiki/List_of_cities_claimed_to_be_built_on_seven_hills\">Wikipedia has a helpful list of cities that claim to be built on seven hills</a>.</p>\n\n<p>A friend pointed out <em>The Nod</em> is a <a href=\"https://www.familyfriendpoems.com/poem/the-invitation-by-oriah-mountain-dreamer\">fine complement to <em>The Invitation</em> by Oriah Mountain Dreamer</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Apr 2018 00:05:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Post Status: Contextualized Learning in or around WordPress — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=44987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://poststatus.com/contextualized-learning-in-or-around-wordpress-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1838:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p><span>In this episode, the dynamic Brian duo discuss the highly-anticipated return of WordSesh, the different ways in which we all learn the same, and some of the problems we face in skill building. The guys also spend time finding and contacting the addressable market around WordPress, characterizing a business as WordPress-focused vs providing WordPress services in the context of a broader market, and some of the nuances of providing contextualized services (whether they be training, consulting, or otherwise).</span></p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://www.nbcnews.com/health/health-news/scientists-say-they-ve-discovered-unknown-human-organ-could-help-n860601\">New human organ</a></li>\n<li><a href=\"http://wordsesh.com/\">WordSesh.com</a></li>\n<li><a href=\"https://wpsessions.com/\">WPSessions.com</a></li>\n</ul>\n<h3>Sponsor: OptinMonster</h3>\n<p><a href=\"http://optinmonster.com\">OptinMonster</a> allows you to convert visitors into subscribers. You can easily create & A/B test beautiful lead capture forms without a developer. Be sure to check out their new <a href=\"http://optinmonster.com/announcing-the-inactivitysensor-activity-logs-and-more/\">Inactivity Sensor</a> technology.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Apr 2018 19:31:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Dev Blog: The Month in WordPress: March 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5632\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2018/04/the-month-in-wordpress-march-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4323:\"<p>With a significant new milestone and some great improvements to WordPress as a platform, this month has been an important one for the project. Read on to find out more about what happened during the month of March.\n\n</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress Now Powers 30% of the Internet</h2>\n\n<p>Over the last 15 years, the popularity and usage of WordPress has been steadily growing. That growth hit a significant milestone this month when <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">W3Techs reported that WordPress now powers over 30% of sites on the web.</a></p>\n\n<p>The percentage is determined based on W3Techs’ review of the top 10 million sites on the web, and it’s a strong indicator of the popularity and flexibility of WordPress as a platform.</p>\n\n<p>If you would like to have hand in helping to grow WordPress even further, <a href=\"https://make.wordpress.org/\">you can get involved today</a>.</p>\n\n<h2>WordPress Jargon Glossary Goes Live</h2>\n\n<p>The WordPress Marketing Team has been hard at work lately putting together <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">a comprehensive glossary of WordPress jargon</a> to help newcomers to the project become more easily acquainted with things.</p>\n\n<p>The glossary <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">is available here</a> along with a downloadable PDF to make it simpler to reference offline.</p>\n\n<p>Publishing this resource is part of an overall effort to make WordPress more easily accessible for people who are not so familiar with the project. If you would like to assist the Marketing Team with this, you can follow <a href=\"https://make.wordpress.org/marketing/\">the team blog</a> and join the #marketing channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n<h2>Focusing on Privacy in WordPress</h2>\n\n<p>Online privacy has been in the news this month for all the wrong reasons. It has reinforced the commitment of the GDPR Compliance Team to continue working on enhancements to WordPress core that allow site owners to improve privacy standards.</p>\n\n<p>The team's work, and the wider privacy project, spans four areas: Adding tools which will allow site administrators to collect the information they need about their sites, examining the plugin guidelines with privacy in mind, enhancing privacy standards in WordPress core, and creating documentation focused on best practices in online privacy.</p>\n\n<p>To get involved with the project, you can <a href=\"https://make.wordpress.org/core/2018/03/28/roadmap-tools-for-gdpr-compliance/\">view the roadmap</a>, <a href=\"https://make.wordpress.org/core/tag/gdpr-compliance/\">follow the updates</a>, <a href=\"https://core.trac.wordpress.org/query?status=!closed&keywords=~gdpr\">submit patches</a>, and join the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat\">Making WordPress Slack group</a>. Office hours are 15:00 UTC on Wednesdays.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>The WordPress Foundation has published <a href=\"https://wordpressfoundation.org/2017-annual-report/\">their annual report for 2017</a> showing just how much the community has grown over the last year.</li>\n <li>The dates for WordCamp US <a href=\"https://2018.us.wordcamp.org/2018/03/13/announcing-wordcamp-us-2018/\">have been announced</a> — this flagship WordCamp event will be held on 7-9 December this year in Nashville, Tennessee.</li>\n <li>WordPress 4.9.5 is due for release on April 3 — <a href=\"https://make.wordpress.org/core/2018/03/21/wordpress-4-9-5-beta/\">find out more here</a>.</li>\n <li>Version 2.5 of Gutenberg, the new editor for WordPress core, <a href=\"https://make.wordpress.org/core/2018/03/29/whats-new-in-gutenberg-29th-march/\">was released this month</a> with a host of great improvements.</li>\n <li>WordSesh, a virtual WordPress conference, <a href=\"http://wordsesh.com/\">is returning in July this year</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Apr 2018 08:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: WPWeekly Episode 310 – Community Management, PHP, and Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=79249&preview=true&preview_id=79249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpweekly-episode-310-community-management-php-and-hello-dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2325:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss the news of the week including, the removal of offensive lyrics in Hello Dolly, a request for plugin developers to stop supporting legacy PHP versions, and changes coming in WordPress 4.9.5.</p>\n<p>We also talk about community management, the difference between comments and forums, and finally, John shares his concerns on how the Gutenberg call-out prompt is being built into core.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/a-plea-for-plugin-developers-to-stop-supporting-legacy-php-versions\">A Plea For Plugin Developers to Stop Supporting Legacy PHP Versions</a><br />\n<a href=\"https://wptavern.com/without-context-some-lyrics-inside-the-hello-dolly-plugin-are-degrading-to-women\">Without Context, Some Lyrics Inside the Hello Dolly Plugin Are Degrading to Women</a><br />\n<a href=\"https://wptavern.com/why-gutenberg-and-why-now\">Why Gutenberg and Why Now?</a><br />\n<a href=\"https://wptavern.com/noteworthy-changes-coming-in-wordpress-4-9-5\">Noteworthy Changes Coming in WordPress 4.9.5</a><br />\n<a href=\"https://wptavern.com/in-wordpress-4-9-5-users-will-be-two-clicks-away-from-installing-and-activating-gutenberg-from-the-dashboard\">In WordPress 4.9.5, Users Will Be Two Clicks Away From Installing and Activating Gutenberg From the Dashboard</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wptavern.com/how-to-disable-push-notification-requests-in-firefox\">How to Disable Push Notification Requests in Firefox</a></p>\n<p><a href=\"https://addons.mozilla.org/en-US/firefox/addon/facebook-container/\">Facebook Container Add-on for Firefox</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 4th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #310:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Mar 2018 21:07:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WPTavern: My Gutenberg Experience Thus Far\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78991\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wptavern.com/my-gutenberg-experience-thus-far\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5397:\"<p>Ive used Gutenberg for several months and during that time, there have been moments where I love it and situations where I've had to disable the plugin because of frustrating bugs. </p>\n\n<p>One of the most frustrating aspects of using Gutenberg is the lack of support from the plugins I depend on.</p>\n\n<h2>Publish Post Preview</h2>\n\n<p>I use the <a href=\"https://wordpress.org/plugins/public-post-preview/\">Publish Post Preview</a> plugin to generate a preview link for posts so that people can see what it looks like before it's published.</p>\n\n<img />\n Publish Preview Checkbox in the Current Editor\n\n\n<p>In the current editor, the checkbox to generate a link is in the Publish meta box. In Gutenberg, that option doesn't exist. According to a <a href=\"https://wordpress.org/support/topic/compatibility-with-gutenberg/\">recent support forum post</a>, the author does not plan on making it Gutenberg compatible until there is a finalized API to extend the sidebar.</p>\n\n<h2>Telegram for WordPress</h2>\n\n<p>We use the <a href=\"https://wordpress.org/plugins/telegram-for-wp/\">Telegram for WordPress</a> plugin to automatically send published posts to our Telegram channel. The plugin adds a meta box that has options to send the post, configure the message structure, send a file, and display the featured image.</p>\n\n<p>In Gutenberg, the meta box is open by default which provides access to those options. However, when I edit a published post, there are times when the meta box is closed and clicking the arrow to expand it doesn't work. <em>Since the Send this post to channel</em> option is on by default, saving changes to the post will resend the post to Telegram subscribers. Something I don't want to happen for simple edits. <br /></p>\n\n<h2>Edit Flow</h2>\n\n<p>We use <a href=\"https://wordpress.org/plugins/edit-flow/\">Edit Flow</a> to collaborate on posts and often use the Editorial Comments feature to provide feedback. In Gutenberg, the meta boxes for Editorial Comments and Notifications do not open when clicking the arrow. Therefor, we can't use those features. <br /></p>\n\n<img />\n <br /><br />Edit Flow Meta Boxes are Broken\n\n\n<h2>After the Deadline</h2>\n\n<p>I'm a fan of <a href=\"https://jetpack.com/support/spelling-and-grammar/\">After the Deadline</a> which is a proofreading module in Jetpack. It checks posts for spelling, grammar, and misused words. When activated, a button is added to the visual editor to perform the checks. This button is not available in Gutenberg, so those features are not available as well.</p>\n\n<h2>Adding Images to Paragraphs is a Pain</h2>\n\n<p>Adding images to paragraphs in Gutenberg is more cumbersome than it needs to be. In the current editor, all I have to do is place the cursor where I want to insert an image, add media, choose image size, align it, and I'm done.</p>\n\n<p>In Gutenberg, you need to create an image block below the paragraph block, move the image block to the paragraph block, align it, and use handlebars on the corner of the image to resize it. </p>\n\n<p>I realize that there are a few workflows that I'm going to have to change because of how Gutenberg works, but this workflow doesn't make any sense to me, especially when I can't insert images without creating a new block. Thankfully, the Gutenberg team is on top of it and is <a href=\"https://github.com/WordPress/gutenberg/pull/5794\">working on a solution</a> to add images within a paragraph block.</p>\n\n<h2>Random Blank Paragraph Blocks</h2>\n\n<p>I recently copied a large amount of text from a Google Doc and pasted it into Gutenberg and was surprised by how well it worked. Blocks were created in the right spots and I didn't have to edit it much.</p>\n\n<p>I opened the post in the classic editor so that I could use the proofreading feature and it mangled the post. I opened the post in Gutenberg again and noticed a bunch of empty paragraph blocks created in-between paragraph blocks.</p>\n\n<p>This resulted in having to spend some time deleting the empty paragraph blocks and questioning whether I should avoid transferring posts between editors in the future.</p>\n\n<h2>Tags Sometimes Appear Blank in the Meta Box</h2>\n\n<p>When adding tags to posts, sometimes the tags appear blank although they show up on the front-end. Also, deleting tags sometimes doesn't work. I click on the X and nothing happens in the back-end, but the tag will be removed from the front-end. <br /></p>\n\n<img />\n Blank Tags in Gutenberg\n\n\n<h2>Gutenberg Has a Lot of Rough Edges</h2>\n\n<p>If this version of Gutenberg were merged into WordPress today, it would be a disaster. It's clear that the project has a long way to go before being considered for merge into core. Most of the issues I've outlined in this post are known and are being addressed. <br /></p>\n\n<p>Gutenberg is supposed to make everything we do in the current editor easier and more efficient. If it doesn't, then I have to ask, what's the point?</p>\n\n<p>What concerns me the most about Gutenberg is plugin support. Some of the plugins I mentioned above are active on 10K sites or less but are important to the way I craft and publish content in WordPress. <br /></p>\n\n<p> Without them, using Gutenberg is not a great experience and instead, makes me want to use the current editor where things simply work. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Mar 2018 20:28:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"HeroPress: Giving Back In Your Own Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://heropress.com/giving-back-in-your-own-community/#utm_source=rss&utm_medium=rss&utm_campaign=giving-back-in-your-own-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3298:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2015/11/GoodtimeToBe-HeroPress-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull quote: It is a good time to be part of the global WordPress community: the costs are low, the developer community is strong, and job availability is at an all time high.\" /><p>I was delighted to find several years ago that there’s a thriving WordPress community in Nepal. Via Slack I got to meet Sakin Shrestha, and learned all about what their group is doing in Nepal to create jobs and keep the Nepali from having to leave the country to find work.</p>\n<p>I recently found out that Sakin is finding a new way to give back to his community: <a href=\"https://sakinshrestha.com/events/announcing-my-new-venture-aksharaa-kindergarten/\">opening a kindergarten</a>. In order for any country to grow strong it has to have good education for its children, and Sakin is working to make that happen.</p>\n<p>Read about how the Nepali WordPress community is working to build their own country.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/doing-our-part-for-the-community/\">Doing Our Part for the Community</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Giving Back In Your Own Community\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Giving%20Back%20In%20Your%20Own%20Community&via=heropress&url=https%3A%2F%2Fheropress.com%2Fgiving-back-in-your-own-community%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Giving Back In Your Own Community\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fgiving-back-in-your-own-community%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fgiving-back-in-your-own-community%2F&title=Giving+Back+In+Your+Own+Community\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Giving Back In Your Own Community\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/giving-back-in-your-own-community/&media=https://heropress.com/wp-content/uploads/2015/11/GoodtimeToBe-HeroPress-150x150.jpg&description=Giving Back In Your Own Community\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Giving Back In Your Own Community\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/giving-back-in-your-own-community/\" title=\"Giving Back In Your Own Community\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/giving-back-in-your-own-community/\">Giving Back In Your Own Community</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Mar 2018 14:21:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"WPTavern: In WordPress 4.9.5, Users Will Be Two Clicks Away From Installing and Activating Gutenberg From the Dashboard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78827\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/in-wordpress-4-9-5-users-will-be-two-clicks-away-from-installing-and-activating-gutenberg-from-the-dashboard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3920:\"<p>At the end of last month, Matt Cromwell, Head of Support and Community Outreach for <a href=\"https://givewp.com/\">GiveWP</a> and an administrator for the <a href=\"https://www.facebook.com/groups/advancedwp/\">Advanced WordPress Facebook group</a>, hosted a <a href=\"https://wptavern.com/matt-cromwell-hosts-matt-mullenweg-in-qa-gutenberg-interview\">question and answer session</a> about Gutenberg with Matt Mullenweg.</p>\n\n<p>Mullenweg was asked a few times if he could provide a concrete date on when Gutenberg and WordPress 5.0 would be ready. While a date was not given, Mullenweg said, \"For those who want a concrete date, we will have one or two orders of magnitude more users of Gutenberg in April.\"</p>\n\n<p>It's now clear what he meant by that. WordPress 4.9.5, scheduled for release in April, will <a href=\"https://core.trac.wordpress.org/ticket/41316\">feature a call-out prompt</a> that has links to information about Gutenberg and a button to quickly install the plugin if user permissions allow. <br /></p>\n\n<img />\n Gutenberg Call-out in WordPress 4.9.5\n\n\n<p>The core team added a Try Gutenberg prompt in October of last year but <a href=\"https://wptavern.com/wordpress-4-9-beta-4-removes-try-gutenberg-call-to-action\">it was removed</a> in WordPress 4.9 Beta 4. After discussing the subject with Mullenweg, it was determined that Gutenberg was not ready for large-scale testing.</p>\n\n<p>The prompt in WordPress 4.9.5 changes the button text based on the following scenarios.<br /></p>\n\n<ul>\n <li>If Gutenberg is not installed, <em>and</em> the user can install plugins, the Install Today button is displayed.<br /></li>\n <li>If Gutenberg is installed but not activated, <em>and</em> the user can install plugins, the Activate Today button is displayed.<br /></li>\n <li>If Gutenberg is installed and activated, <em>and</em> the user can edit posts, the Try Today button is displayed.<br /></li>\n</ul>\n\n<p>If Gutenberg is not installed and the user can not install plugins, the button is hidden from view. If you'd like to hide the prompt from users, David Decker has <a href=\"https://github.com/deckerweb/remove-gutenberg-panel\">created a plugin</a> that's available on GitHub that simply hides it from view.</p>\n\n<p>One of the concerns about the prompt is the lack of warning of the risks involved using beta software on a live site. Gutenberg is beta software that's still in development that could <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:75\">adversely affect sites</a>. There is no warning on the call-out box and in two clicks, users can install and activate Gutenberg. <br /></p>\n\n<p>Whether it's Gutenberg or some other beta software, this general advice applies. Create a full backup of your site before installing and if possible, install it on a staging site first.</p>\n\n<p>I predict that the volunteers who manage the WordPress.org support forums will have their hands full once WordPress 4.9.5 is released. The support team <a href=\"https://make.wordpress.org/support/2018/03/agenda-for-march-22nd-support-meeting/\">is preparing</a> by brainstorming user outcomes, common questions that may be asked, and potential pitfalls users experience after installing Gutenberg. <br /></p>\n\n<p>If you'd like to give them a helping hand, check out the <a href=\"https://make.wordpress.org/support/handbook/\">Support Handbook</a> and if you have any questions, stop by the <a href=\"https://wordpress.slack.com/?redir=%2Fmessages%2Fforums%2F\">#forums</a> channel in <a href=\"https://make.wordpress.org/chat/\">Slack</a>.</p>\n\n<p>The Gutenberg call-out has the potential to pave the way for large audiences to test major features in core without needing to use or install a beta branch of WordPress. However, this convenience comes with risks and while they can be reduced, WordPress needs to be up front and center to users about those risks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Mar 2018 22:55:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WPTavern: Why Gutenberg and Why Now?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78707\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wptavern.com/why-gutenberg-and-why-now\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17921:\"<img />\n\n<p>Tevya Washburn has been building websites for more than 20 years and building them on WordPress for 10. He bootstrapped his website maintenance and support company, <a href=\"http://wordx.press\">WordXpress</a>, that he’s worked on full-time for more than seven years.</p>\n\n<p>Late last year he launched his first premium plugin, and presented at WordCamp Salt Lake City. He lives in Caldwell, ID and is the founding member of the WordPress Meetup group in Western Idaho. <br /></p>\n\n<hr />\n\n<p>It was only a few months ago that I knew almost nothing about WordPress’ new Gutenberg editor. I had a basic concept of what it was and this vague annoyance that it would mean I’d have to learn new things and probably put a lot of effort into making some sites or projects work with it.</p>\n\n<p>I kept hearing all of the frustration and issues with Gutenberg itself and the lack of information on how to integrate with it. At <a href=\"https://wordx.press\">WordX</a>p<a href=\"https://wordx.press\">ress</a> we recently pivoted away from designing websites. When we designed them in the past, we used premium themes. I figured Gutenberg was the theme developer’s problem.<br /></p>\n\n<p>I still had this feeling of dread though, knowing many of my favorite plugins might not add support for it. I also felt some apprehension that even if the themes we use did add support for it, they might have a lot of new bugs through the first few releases.</p>\n\n<p>Then I launched my first WordPress plugin, <a href=\"https://starfishwp.com\">Starfish Reviews</a>, and suddenly they weren’t someone else’s problems anymore! Now I’d have to come up with a plan to integrate our plugin with Gutenberg. I installed the Gutenberg plugin on a test site where we were testing our plugin with the nightly releases of WordPress and started playing around with it.</p>\n\n<p>I was pleasantly surprised at how intuitive and easy it was to use! Now it wasn’t (and isn’t) finished, so there were bugs and annoyances, but overall I was impressed.</p>\n\n<p>Around the same time, I suggested we should have someone present on Gutenberg at our local meetup. My brief experience was more than what anyone else had, so the responsibility fell on me. Preparing for the presentation forced me to look at Gutenberg more carefully and pay more attention to the information and debate going on throughout the community.</p>\n\n<p>I started reading blog posts, paying more attention in podcasts, and even looking at what was being said on Twitter. I watched the State of the Word at WordCamp US where the general tide in the feelings toward Gutenberg, seemed to turn, though many people still remain skeptical, critical, or antagonistic toward the project as a whole.</p>\n\n<p>Today, I saw someone suggesting legal action if Gutenberg caused problems on their sites. That’s ridiculous on several levels, but shows that there’s still a lot of suspicion, frustration, and outright anger around Gutenberg.</p>\n\n<p><em>A couple notes: 1. the graphs below are for illustration purposes only, they’re not meant to be accurate to any actual data. 2. If you prefer listening, you can </em><a href=\"https://www.youtube.com/watch?v=S4ZqrVJ465E\"><em>watch my screencast version</em></a><em> (13:12) of what follows. The message is the same, but differs in many aspects of presentation.</em></p>\n\n<h2><strong>Finding the Why</strong></h2>\n\n<p>Simon Sinek is known for <a href=\"https://www.youtube.com/watch?v=u4ZoJKF_VuA\">his Ted talk</a> where he explains that most people explain a new product or service by talking about ‘what’ it is and ‘how’ it works, but they rarely explain the ‘why’ behind it. The ‘why’ actually resonates with people the most. They want to understand the reason and beliefs behind it.</p>\n\n<p>In my research, I couldn’t seem to find a clear answer to the most important question: “Why Gutenberg?” If I was going to present to people who knew little or nothing about it, I wanted to provide a reason why this major change was coming that might cause significant frustration, work, and pain for them.</p>\n\n<img />\n\n<p>I found a lot of ‘what’ and ‘how’ about Gutenberg. In some posts by <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">Matt Mullenweg</a> and <a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">Matías Ventura</a>, I found hints about ‘why’ Gutenberg existed, but no really clear, simple explanation of why this whole project was happening. Why would Matt and others want to seemingly force this major change on us all? Why does it have to be such a radical departure from the past? Why now?</p>\n\n<p>I was certain the conspiracy theorists—who seem to believe that Automattic’s sole mission is to make their lives more miserable—were wrong. But what was the purpose? Could it really just be a <strong>me too</strong> attitude that left all of these brilliant minds feeling like they had to keep up with Squarespace and Medium? That didn’t seem to fit. Especially since Gutenberg is already leagues better than Squarespace’s convoluted visual editor.</p>\n\n<h2><strong>Innovative Disruption</strong></h2>\n\n<img />\n The Innovator's Dilemma Book Cover\n\n\n<p>Taking cues from those hints and suggestions, I started thinking about the innovative disruption model. It was popularized in business circles, starting in 1997 when the book “<a href=\"https://en.wikipedia.org/wiki/The_Innovator%27s_Dilemma\">The Innovator’s Dilemma</a>” was published by Clayton Christensen, a Harvard professor. His book was an expansion of an <a href=\"https://hbr.org/1995/01/disruptive-technologies-catching-the-wave\">earlier article</a> in the Harvard Business Review.</p>\n\n<p>At the risk of oversimplifying the model, innovative disruption is what happens when an existing company who is the top dog (either in sales or market share) gets comfortable with their position at the top along with their revenue stream and quits innovating. They make small, incremental updates to their products or services to keep customers happy, but fail to look at the future of their industry.</p>\n\n<p>This makes it easier for a startup or smaller, more innovative company to bring a new product or service to market that completely disrupts the existing market because it’s better, faster, cheaper. The established company doesn’t see the disruption coming because they feel secure in their large market share and steady sales revenue. They often respond with “why would anyone want that?” when approached with the new model that is about to completely upset their business model.</p>\n\n<h2><strong>Blockbuster Gets Busted</strong></h2>\n\n<p>The classic example of this is Blockbuster Entertainment, Inc. They had over 9,000 stores at one time, allowing people to rent VHS tapes and later, DVDs. They had a huge portion of the market all to themselves and it seemed nobody could compete with this juggernaut.</p>\n\n<p>Then along came two small startups: Netflix and Redbox. Netflix comes along and says “we’re going to stream movies over the internet. That’s the future and the way everyone will want to consume movies and TV in the future. But since the internet is too slow right now, we’ll just start by mailing DVDs to people.”</p>\n\n<p>Blockbuster looked at this and said, “the internet is <em>way</em> too slow to stream movies. That’s ridiculous! Who wants to wait two weeks to get a movie in the mail?! Hahaha! Stupid startup, they’re wasting their money and energy.” In hindsight this seems ridiculous. At the time, most people would have agreed with Blockbuster.</p>\n\n<p>As you know, people started changing the way they rented movies. Once they tried it, they were happy to pay a subscription and use a queue to get DVDs delivered in the mail. Ultimately, making the decision of what to watch ahead of time was better than wandering through a cathedral of DVDs only to find the one you wanted to watch has already been checked out.</p>\n\n<p>Consumer internet bandwidth speeds quickly caught up. Netflix even invented some of the technologies that provide high quality streaming video to your home. Now, most of us can’t imagine having to go to the store to rent a physical copy of a movie. And those that can, get them from a Redbox kiosk that has a limited selection, but is much quicker and easier than a video store. Netflix now has a larger market share than Blockbuster ever did, with <em>zero</em> physical locations.</p>\n\n<img />\n\n<p>There are exactly nine Blockbuster stores still operating, mostly in Alaska. From 9,000 down to nine in only a few years! This is what failing to innovate does. This is how comfort and confidence in market share and sales blinds people and organizations to the coming innovations that will disrupt their market.</p>\n\n<h2><strong>Literacy, Disruption, and Gutenberg</strong></h2>\n\n<p>Disruptive innovation doesn’t apply just in business. I have a Bachelor’s degree in history. So one example I love to use is how literacy and education ultimately toppled monarchies and traditional power structures in favor of republics and representative democracy.</p>\n\n<p>The choice of Gutenberg as the name of the new WordPress editor seems prescient in this example as well. The name was one of the clues that led me to answer the ‘why?’ question. It was Johannes Gutenberg and his movable type printing press that was the innovative disruption that changed everything!</p>\n\n<p>Before that, the vast majority of people in Europe were illiterate and uneducated. The scarcity of books and written material made it impractical and prohibitively expensive for most people to learn to read. It also allowed the Church and aristocracy to control the opportunity to become literate. That meant the rich and powerful were the gatekeepers of knowledge. Most riots and uprisings to this point were about hunger.</p>\n\n<p>The Gutenberg press changed all that. Suddenly books could be mass-produced faster, cheaper, better than they ever could before. Literacy caught on like a wildfire. The power structures thought they could control it and maintain the status quo. They outlawed printing without state approval and did many other things to limit the spread of ideas through printed materials.</p>\n\n<p>But it was too late, the power to spread ideas that the printing press provided was much too viral. Many printing presses were operated illegally, then destroyed when they were discovered by authorities.</p>\n\n<img />\n\n<p>The tipping point had been reached though. The ability to read and spread ideas via printed documents was much more powerful than the money, soldiers, and weapons of the monarchy. Though hunger might have sparked riots and uprisings from this time on, those tiny flames were fanned into an inferno of revolution by ideas spread through printed words. <a href=\"https://en.wikipedia.org/wiki/Thomas_Paine\">Thomas Paine</a>’s Common Sense is a great example if you want to learn more about concrete examples.</p>\n\n<h2><strong>The Pain of Disrupting Yourself</strong></h2>\n\n<p>I don’t have a business degree, but from my understanding, <em>The Innovator’s Dilemma</em> can be simplified down to this: to survive, and stay on top, a company (or software, or community) must innovate. It <em>can not</em> be incremental innovation. It <em>must</em> be innovation that disrupts the company’s core product or business model, even to the point of entirely replacing it.</p>\n\n<p>Blockbuster tried some Redbox-like and Netflix-like solutions, but they were too little, too late. The only way they could have survived would have been to disrupt their own business model and service. They would have had to say, “in five years we will close all 9k stores and completely shift our business to providing video online.”</p>\n\n<p>Who does that? Who thinks “we have built an empire, but we have to completely change it and replace it all over again”? That’s “The Innovator’s Dilemma” that the book’s title refers to: it’s incredibly difficult to think in those terms when you’re on the top. It’s nearly impossible to say, “we have to disrupt ourselves. We must compete with our own business and products and services.” But ultimately it’s the only way to survive.</p>\n\n<p>…Or you can buy an innovative company and let them disrupt your main business. Did you know Blockbuster had the <a href=\"http://www.businessinsider.com/blockbuster-ceo-passed-up-chance-to-buy-netflix-for-50-million-2015-7\">chance to buy Netflix</a> for $50 million in 2000? It was pocket change, but they passed because it was a very small, niche business.</p>\n\n<p>Had they bought Netflix and allowed it to continue innovating and disrupting their core retail rental model, Blockbuster might still be around. It wouldn’t have 9k retail stores, but it would have an even larger market share than it ever did renting DVDs.</p>\n\n<img />\n\n<p>In either case, the process is painful. That’s why it’s called disruptive. Not because it’s a walk on the beach or small speed bump, but because it takes a lot of work and forward-thinking and causes a lot of pain to create and implement.</p>\n\n<p>If you are the market leader, you can’t rest on your previous success. You have to change everything once again, like you did to get to where you are now. Despite the pain of doing it, you have to invest yourself and your resources into hard work and difficult questions and challenging thinking that goes directly counter to our natural tendency as humans. If you want to stay on top, it’s the only way.</p>\n\n<h2><strong>WordPress is Ripe for Disruption</strong></h2>\n\n<p>WordPress has a 30% market share right now. It won’t be long before 1 out of every 3 websites is built on WordPress. No other platform is even close.</p>\n\n<p>As WordPress professionals and community members, it seems like we have all the momentum and benefits of being the leader. “Surely nothing could displace WordPress!” That’s what Blockbuster said. That’s what monarchs of past ages said. The truth is simple: “yes, something could. In fact, something will, if WordPress doesn’t innovatively disrupt itself.”</p>\n\n<img />\n\n<p>Is it going to be painful? Yes. Is it going to cause a lot of work and effort on the part of the community? Yes! Absolutely. But the alternative is to learn a totally new platform in five years when WordPress dies like Blockbuster did. You think this change is going to be difficult? Try throwing out WordPress entirely and moving your website(s) to an entirely new platform. Because that’s the alternative.</p>\n\n<h2><strong>Good Arguments Against Gutenberg</strong></h2>\n\n<p>I see many people listing a string of bugs in the Gutenberg UI/UX and concluding that Gutenberg shouldn’t exist. I see others critiquing the underlying technologies and claiming that’s evidence that Gutenberg is entirely wrong.</p>\n\n<p>I’m sorry, but those arguments are entirely invalid. They may be great arguments for how Gutenberg needs to change or improve, but they are <em>not</em> valid arguments against the existence of Gutenberg and its inclusion in core.</p>\n\n<p>Hopefully, I’ve made it clear that WordPress is in dire need of innovation. If that’s true, then as I see it, there’s only one really great argument against Gutenberg. As one person in one of the meetups I presented at put it: “is it the right innovation?”</p>\n\n<p>That's the crux of the whole thing: <strong>WordPress must innovate to survive</strong>. Matt Mullenweg and the entire Gutenberg team have looked at the past and the future and decided that a better, faster, easier user interface and experience, are the disruptive innovations that WordPress needs to survive.</p>\n\n<p>You can argue that it’s not, that there’s some other innovation that will completely change WordPress and thereby save it from disruption by outside forces. And that's a totally valid argument to make. But in my opinion, <strong>you can’t argue that continued, incremental changes are enough.</strong> You can’t argue that the path we’ve been on the last five years is going to keep WordPress on top for the next five years. It simply won’t.</p>\n\n<h2><strong>I Like Gutenberg, but I Love What it’s Doing</strong></h2>\n\n<p>In my experience thus far, I like Gutenberg. I believe it is the right disruptive innovation WordPress needs at this time. It will make WordPress easier to use and help its underpinnings be ready for the future. Being easy to use is what got WordPress where it is today.</p>\n\n<p>It’s not very easy to use any more. There are significantly easier options out there, that could disrupt WordPress and replace it. I think Gutenberg will allow WordPress to disrupt itself and keep ahead of other disruptive innovations. It will save WordPress and allow us all to keep using it and building our businesses on it for another 10 years into the future.</p>\n\n<p>I like Gutenberg, but I really love what Gutenberg means, what it represents, and what it's doing. Gutenberg is bigger than just a new post editor, it shows that the leaders of the WordPress community are willing to make hard decisions and innovate even when it means disrupting their own work and previous innovations.</p>\n\n<img />\n\n<p>I have huge respect for the Gutenberg team, who have not only had to rethink everything and do all those difficult things I referred to before, but have had to do it all very publicly, while navigating a gauntlet of criticism, personal attacks, and much more.</p>\n\n<p>I hope this post shows my thanks and newfound appreciation for what they’re doing and going through. Flipping the phrase from <em>The Dark Knight,</em> the members of the Gutenberg team are “the heroes the WordPress community needs right now, even if they’re not the ones we deserve.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Mar 2018 18:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Post Status: The Future of Content Distribution — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=44599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://poststatus.com/future-content-distribution-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2385:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p><span>This week the Brians put their brains together and discuss content distribution across various mediums and platforms as well as subscriptions for both digital and physical products. The conversation shifts between different tooling and platforms that exist for enabling content distribution as well as some of the societal shifts that have shaped how we share and consume both content and products. </span></p>\n<p><span>This is a good episode for anyone who is developing sites and selling solutions around content distribution or subscriptions as well as anyone who is running (or looking to run) a business based around a subscriber model (paid or otherwise).</span></p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">WP Jargon Glossary</a></li>\n<li><a href=\"https://www.blog.google/topics/google-news-initiative/announcing-google-news-initiative/\">Google News subscription initiative</a></li>\n<li><a href=\"https://woocommerce.com/2018/02/succeed-with-woocommerce-subscriptions-technical-tips/\">Brent’s blog post</a></li>\n<li><a href=\"https://woocommerce.com/products/teams-woocommerce-memberships/\">Teams for WooCommerce Memberships</a></li>\n<li><a href=\"https://www.recode.net/2017/12/13/16771646/target-shipt-acquisition-price-550-million-grocery-delivery-same-day\">Target acquires Shipt</a></li>\n</ul>\n<h3>Sponsor: Pagely</h3>\n<p><a href=\"https://pagely.com\"><span>Pagely</span></a><span> offers best in class managed WordPress hosting, powered by the Amazon Cloud, the Internet’s most reliable infrastructure. Post Status is proudly hosted by Pagely. Thank you to </span><a href=\"https://pagely.com\"><span>Pagely</span></a><span> for being a Post Status partner</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Mar 2018 13:24:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"BuddyPress: 10 years\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=271550\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://buddypress.org/2018/03/10-years/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5437:\"<p>In 2008 (just 10 short years ago) <a href=\"https://profiles.wordpress.org/apeatling\">Andy Peatling</a> made the very first code-commit to the newly adopted BuddyPress project, joining bbPress, GlotPress, and BackPress at the time. As most of you can probably imagine, BuddyPress was a different piece of software back then, trying to solve a completely different decade’s worth of problems for a completely different version of WordPress.</p>\n<p>BuddyPress was multisite only, meaning it did not work on the regular version of WordPress that most people were accustomed to installing. It needed to completely take over the entire website experience to work, with a specific theme for the primary part of your site, and blog themes for user profiles and everything else.</p>\n<p>There was a lot to love about the original vision and version of BuddyPress. It was ambitious, but in a clever kind of way that made everyone tilt their heads, squint their eyes, and ponder what WordPress was capable of. BuddyPress knew exactly what it was trying to do, and owned it without apologies.</p>\n<p>It touted itself as a “Social Network in a box” at a time when MySpace was generating 75.9 million <em>unique</em> visitors per month, so if you couldn’t imagine how different BuddyPress may have been before, imagine how excited everyone was at the idea of owning their own MySpace.</p>\n<p>Since then, Andy invited <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone</a>, <a href=\"https://profiles.wordpress.org/djpaul\">Paul</a>, and <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">me</a> to help lead the project forward, and in-turn we’ve invited several other prolific BuddyPress contributors to help with every aspect of the project, website, design, and so on.</p>\n<p>The BuddyPress team has grown in a few different ways. Most recently, we’ve added <a href=\"https://profiles.wordpress.org/espellcaste\">Renato Alves</a> to the team to help with WP-CLI support. Renato is a long-time contributor who stepped up big-time to really own the WP-CLI implementation and finally see it through to the end.</p>\n<p><a href=\"https://profiles.wordpress.org/slaffik\">Slava Abakumov</a> lead the 2.8 release, and we finally met in person for the very first time just last week at WordCamp Miami. He’s another long-time contributor who has always had the best interests of the project in mind and at heart.</p>\n<p><a href=\"https://profiles.wordpress.org/offereins\">Laurens Offereins</a> has been helping fix BuddyPress bugs and work on evolving features since version 2.1, and while we haven’t met in person <em>yet</em>, I look forward to it someday!</p>\n<p><a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a> (who you may recognize from bbPress) also works a bit on BuddyPress, largely around tooling & meta related things, but he’s fully capable and will jump in and help anywhere he can, be it the forums or features.</p>\n<p><a href=\"https://profiles.wordpress.org/mercime\">Mercime</a> would prefer I not blather on endlessly here about how important she is, or how much I appreciate her, or anything like that, so please forget I mentioned it.</p>\n<p><a href=\"https://profiles.wordpress.org/hnla\">Hugo Ashmore</a> has spent the past 2 years completely rebuilding the default template pack. This is an absolutely huge undertaking, and everyone is really excited about sunsetting ye olde <code>bp-legacy</code>.</p>\n<p><a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a> has moved on to work on the enormously important and equally ambitious <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> project. Tammie is wonderful, and doing a great job crafting what the future of democratizing publishing is.</p>\n<p>Lastly, a few of our veteran team members took sabbaticals from contributing to BuddyPress in the past few years, which I see as an opportunity to return with fresh ideas and perspectives, or maybe moving onto new & exciting challenges. This is a good, healthy thing to do, both for oneself and the project. Space makes the heart grow fonder, and all that.</p>\n<hr />\n<p>A small aside but worth saying here & now, is that leading an open-source project is everything you think it is (or maybe have read already that it is) and like a million other things that are hard to understand until you understand. The one constant (and subsequently the hardest and funnest part) is how to provide opportunities for personal growth, without prohibiting contributions, while also doing what’s best for the greater vision of the project itself, amongst a completely remote group of bespoke volunteers. I think Paul, Boone, and I do OK at this, but we are always learning and adjusting, so please reach out to us if there is anything we can do differently or better.</p>\n<hr />\n<p>BuddyPress is my personal favorite piece of software. It’s my favorite community. I wake up excited every day because of what it can do and who it does it for. Put another way, I love what we make it do and who we make it for: ourselves, one another, each other, and you.</p>\n<p>Cheers to 10 years, and here’s to another 10!</p>\n<p><img class=\"alignnone wp-image-271562 size-full\" src=\"https://buddypress.org/wp-content/uploads/1/2018/03/Screen-Shot-2018-03-25-at-4.38.12-PM.png\" alt=\"\" width=\"898\" height=\"452\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 25 Mar 2018 22:54:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"JJJ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: Noteworthy Changes Coming in WordPress 4.9.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78611\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wptavern.com/noteworthy-changes-coming-in-wordpress-4-9-5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2401:\"<p>WordPress 4.9.5 Beta 1 <a href=\"https://make.wordpress.org/core/2018/03/21/wordpress-4-9-5-beta/\">is available</a> for testing and brings with it 23 bug fixes and improvements. A release candidate is scheduled for release on March 20th and a final release on April 3rd. Here are some notable changes you can expect in the release.</p>\n\n<h3>\"Cheatin’ uh?\" Error Message is Replaced</h3>\n\n<p>The \"Cheatin’ uh?\" error message has existed in WordPress for years and for some, is insulting. The error doesn't explain what went wrong and accuses the user of trying to cheat the system.</p>\n\n<img />\n Cheatin' Uh Error Message<br />\n\n\n<p>Eric Meyer highlighted the error in <a href=\"https://wordpress.tv/2016/06/24/eric-a-meyer-design-for-real-life/\">his keynote</a> at WordCamp North East Ohio in 2016, when talking about Designing for Real Life. He also <a href=\"https://core.trac.wordpress.org/ticket/38332#comment:11\">contributed to the ticket</a> with suggestions on how to improve the wording.</p>\n\n<p>In WordPress 4.9.5, the error <a href=\"https://core.trac.wordpress.org/ticket/38332\">has been changed</a> to more meaningful messages depending on the error that occurs.</p>\n\n<h3>Recommended PHP Version Increased to 7.2</h3>\n\n<p>Inside of the readme file in WordPress, the current recommended PHP version is 7.0. This version of PHP reached end of life last December. In 4.9.5, the recommend version is PHP 7.2. This is the same version that is <a href=\"https://wordpress.org/about/requirements/\">recommended on WordPress.org</a>.</p>\n\n<h3>Offensive Lyrics Removed From Hello Dolly</h3>\n\n<p>As we covered <a href=\"https://wptavern.com/without-context-some-lyrics-inside-the-hello-dolly-plugin-are-degrading-to-women\">earlier this week</a>, some of the lines displayed in the dashboard from the Hello Dolly plugin are inappropriate without context. In 4.9.5, the plugin will no longer display those lines.</p>\n\n<p>There's a possibility that in the future, there will be a musical note icon or symbol placed next to the line to indicate it's from a song. In addition, the lyrics are more in line with Louis Armstrong's recording.</p>\n\n<p>To see a full list of changes in WordPress 4.9.5, you can <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.5&group=component\">view a full list</a> of closed tickets on Trac. </p>\n\n<p><br /></p><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Mar 2018 21:32:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: WPWeekly Episode 309 – All AMPed Up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=78601&preview=true&preview_id=78601\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wptavern.com/wpweekly-episode-309-all-amped-up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2180:\"<p>In this episode, I’m joined by <a href=\"https://medinathoughts.com/\">Alberto Medina</a>, Developer Advocate working with the Web Content Ecosystems Team at Google, and <a href=\"https://weston.ruter.net/\">Weston Ruter</a>, CTO of XWP. We have a candid conversation about <a href=\"https://www.ampproject.org/\">Google’s AMP Project</a>. We start by learning why the project was created, what its main goal is, and the technology behind it.</p>\n<p>We also dive into some of the controversy surrounding the project by discussing whether or not AMP is a threat to the Open Web. Medina and Ruter provide insight into AMP’s transformation from focusing on the mobile web to providing a great user experience across the entire web. Last but not least, we learn about the relationship between Automattic, XWP, and the AMP team and how it’s helping to shape the future of the project.</p>\n<h2>Notable Links Mentioned:</h2>\n<p><a href=\"https://wordpress.org/plugins/amp/\">AMP for WordPress Plugin</a><br />\n<a href=\"https://github.com/Automattic/amp-wp\">AMP for WordPress GitHub Repository</a><br />\n<a href=\"https://github.com/ampproject\">AMP GitHub Repository</a><br />\n<a href=\"https://www.youtube.com/watch?v=GGS-tKTXw4Y\">Video presentation from AMP Conf 2018 showcasing the work that’s gone into the AMP for WordPress plugin</a><br />\n<a href=\"https://www.ampproject.org/latest/blog/standardizing-lessons-learned-from-amp/\">Official blog post outlining the future of the AMP Project</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 28th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #309:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Mar 2018 14:34:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Don’t Like Change\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47998\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2018/03/dont-like-change/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:407:\"<blockquote class=\"wp-block-quote\">\n <p>If you don't like change, you're going to like irrelevance even less.</p><cite>General Eric Shinseki</cite></blockquote>\n\n<p>I actually heard this on the <a href=\"https://www.fs.blog/2015/06/michael-lombardi/\">Farnam Street podcast with Patriots coach Michael Lombardi</a>, but it seems like General Shinseki said it first so attributing it there.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Mar 2018 00:01:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"HeroPress: Keeping Community Alive\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://heropress.com/keeping-community-alive/#utm_source=rss&utm_medium=rss&utm_campaign=keeping-community-alive\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3425:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/09/090716-David-Laietta-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Be a pillar of support for your community.\" /><p>In the last year or so I’ve been a lot more involved with the business side of WordPress than the community side. The business side isn’t nearly as loving and supportive as the community side, and some of that is out of necessity. Business is business, and people need to eat.</p>\n<p>The problem comes when people get so focused on the business side of things that they forget they’re dealing with people. Recently <a href=\"https://twitter.com/carlhancock/status/971182969514799105\">Carl Hancock mentioned on twitter</a> that there are things that happen in business in the WordPress community that would horrify people. I don’t know who those people are that do those things, and I don’t even know what the things are, but I have hope that the community can be bigger and better than that.</p>\n<p>There will always be selfish jerks who abuse the system for personal gain, but I have hope that the WordPress community can generally rise above that, and perhaps even change the hearts of poor players.</p>\n<p>This week’s HeroPress replay is from David Laietta, about how our community changes lives.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/a-community-of-acceptance/\">A Community of Acceptance</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Keeping Community Alive\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Keeping%20Community%20Alive&via=heropress&url=https%3A%2F%2Fheropress.com%2Fkeeping-community-alive%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Keeping Community Alive\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fkeeping-community-alive%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fkeeping-community-alive%2F&title=Keeping+Community+Alive\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Keeping Community Alive\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/keeping-community-alive/&media=https://heropress.com/wp-content/uploads/2016/09/090716-David-Laietta-150x150.jpg&description=Keeping Community Alive\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Keeping Community Alive\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/keeping-community-alive/\" title=\"Keeping Community Alive\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/keeping-community-alive/\">Keeping Community Alive</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Mar 2018 15:39:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: A Plea For Plugin Developers to Stop Supporting Legacy PHP Versions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78533\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/a-plea-for-plugin-developers-to-stop-supporting-legacy-php-versions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2188:\"<p>Iain Poulson has <a href=\"https://deliciousbrains.com/legacy-php-version-support/\">published a thoughtful request</a> on the Delicious Brains blog asking WordPress plugin developers to stop supporting legacy PHP versions. He covers some of the benefits of developing with newer versions of PHP, what Delicious Brains is doing with its plugins, and using the <a href=\"https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/\">Requires Minimum PHP Version header</a> in readme.txt.<br /></p>\n\n<blockquote class=\"wp-block-quote\">\n <p>While we wait for the Trac discussion to roll on and the WordPress development wheels to turn we can take action ourselves in our plugins to stop them working on installs that don’t meet our requirements. </p>\n <p>We do this in our own plugins where it is strictly necessary (<a href=\"https://deliciousbrains.com/wp-offload-s3/\">WP Offload S3</a> relies on the Amazon Web Services S3 SDK, which requires PHP 5.3.3+ and will we will <a href=\"https://deliciousbrains.com/wp-offload-s3/doc/php-version-requirements/\">move to PHP 5.5</a> in the future), and the more plugins that do this out of choice will help move the needle further.</p><cite>Iain Poulson <br type=\"_moz\" /></cite></blockquote>\n\n<p>Poulson mentions the <a href=\"https://github.com/WordPress/servehappy\">ServeHappy project</a> in his post and it's worth a mention here as well. The ServeHappy project was <a href=\"https://make.wordpress.org/core/2018/01/09/servehappy-roadmap/\">launched earlier this year</a> by a group of volunteers.</p>\n\n<p>Its main goal is to reduce the number of WordPress installs running on unsupported PHP versions through education, awareness, and tools to help users update their site's PHP versions.</p>\n\n<p>This project is in need of contributors. If you're interested, join the #core-php channel on <a href=\"https://make.wordpress.org/chat/\">WordPress Slack</a>. The team has meetings every Monday at 11:00 AM EDT. You can also follow the <a href=\"https://make.wordpress.org/core/tag/core-php/\">#core-php tag</a> on the Make WordPress.org Core site where links to chat logs and meeting summaries are published. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Mar 2018 00:31:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: How to Disable Push Notification Requests in Firefox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78475\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/how-to-disable-push-notification-requests-in-firefox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1246:\"<p>Have you noticed how many sites ask if you want to enable push notifications? I've answered no to every request but thanks <a href=\"https://twitter.com/tkraftner/status/976116234365358081\">to a tip</a> suggested by Thomas Kräftner, you can disable requests from appearing altogether in Firefox.</p>\n\n<p>Last week, Mozilla <a href=\"https://www.mozilla.org/en-US/firefox/59.0/releasenotes/\">released Firefox 59.0</a> and added a <a href=\"https://support.mozilla.org/en-US/kb/push-notifications-firefox\">new privacy feature</a> that allows users to block sites from sending push notification requests. To enable it, open the Options panel in Firefox 59.0 and click the Privacy&Security tab.<br /></p>\n\n<p>Scroll down to the Permissions section. Click on the Settings button for Notifications and check the box that says <em>Block new requests asking to allow notifications.</em></p>\n\n<img />\n Settings panel for Notifications\n\n\n<p>Click the Save Changes button and enjoy one less thing interrupting your browsing experience. To accomplish the same thing in Chrome, follow <a href=\"https://fieldguide.gizmodo.com/how-to-block-super-annoying-website-notification-reques-1797499616\">this tutorial published by Field Guide</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Mar 2018 23:32:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: Without Context, Some Lyrics Inside the Hello Dolly Plugin Are Degrading to Women\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/without-context-some-lyrics-inside-the-hello-dolly-plugin-are-degrading-to-women\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2914:\"<p>There have been <a href=\"https://core.trac.wordpress.org/ticket/11538\">many discussions</a> over the years on whether or not <a href=\"https://wordpress.org/plugins/hello-dolly/\">Hello Dolly</a> should be unbundled with WordPress. Seven years ago, it was <a href=\"https://core.trac.wordpress.org/ticket/15769\">argued</a> that the lyrics are copyrighted and could potentially violate the GPL license.</p>\n\n<p>The latest issue with Hello Dolly is that some lyrics that appear in users dashboards with the plugin activated can be degrading to women without context.</p>\n\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Find her an empty lap, fellas.<br /><br />Wondering about my <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> dashboard. Apparently they\'re lyrics. <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f643.png\" alt=\"?\" class=\"wp-smiley\" /> <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f644.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/oxNU9czr5X\">pic.twitter.com/oxNU9czr5X</a></p>— Michelle Felt (@michellefelt) <a href=\"https://twitter.com/michellefelt/status/974060334502719488?ref_src=twsrc%5Etfw\">March 14, 2018</a></blockquote></p>\n\n<p>Two examples are:</p>\n\n<ul>\n <li>Find her an empty lap, fellas</li>\n <li>Find her a vacant knee, fellas</li>\n</ul>\n\n<p>Joe McGill has <a href=\"https://core.trac.wordpress.org/ticket/43555\">created a trac ticket</a> proposing that those two lines be removed. \"The Hello Dolly plugin has been bundled in WordPress for many years, being a simple example of how to build a plugin for WordPress while also adding a bit of whimsy to admin,\" he said.</p>\n\n<p>\"However, there are several passages of text from this song which are inappropriate to display without any context to people using WordPress—particularly as the WordPress project seeks to promote inclusivity for all.\"</p>\n\n<p>The discussion within the ticket suggests creating a black list or replacing the lyrics with less offensive versions. In many of the Google search results for Hello Dolly lyrics by Jerry Herman, shows that the lyrics inside the plugin and those in the song are different.</p>\n\n<p>The lyrics say, \"Find me a vacant knee, fellas.\" In a <a href=\"https://www.youtube.com/watch?v=RETJfq1U_gg\">video on YouTube</a> of Hello Dolly featuring Sarah Gardner singing the lyrics, she clearly says \"Find her an empty lap, fellas.\" In a YouTube video of <a href=\"https://www.youtube.com/watch?v=kmfeKUNDDYs\">Louis Armstrong singing Hello Dolly live</a>, he says \"Find her an empty lap, fellas.\"<br /></p>\n\n<p>Putting aside the debate of which version of the lyrics are used, displaying the text above without context can and is seen as degrading women. At a time when WordPress and its community are doing what it can to be more inclusive, changing or removing the lyrics seems like an easy win. </p>\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2018 20:45:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: Watch WordCamp Miami 2018 Via Free Livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78359\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/watch-wordcamp-miami-2018-via-free-livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:618:\"<p>Tickets for the event may be sold out, but you can watch the event from anywhere thanks to a <a href=\"https://2018.miami.wordcamp.org/live/\">free livestream</a>. The stream starts today and covers both the E-Commerce and developers workshops. The stream begins tomorrow at 8:30AM EDT with separate links to <a href=\"https://bizstreams.fiu.edu/Mediasite/Play/05a25d9473ca4c919b5f29aa426bb0c01d?catalog=f4f4edd3-2dee-4302-91c6-d77c1da5f437\">morning</a> and <a href=\"https://bizstreams.fiu.edu/Mediasite/Play/30c9fdc284ce46648866ed715fd3b90d1d?catalog=f4f4edd3-2dee-4302-91c6-d77c1da5f437\">afternoon</a> sessions. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2018 16:18:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Let’s Encrypt Wildcard Certificates Are Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/lets-encrypt-wildcard-certificates-are-now-available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1765:\"<p>In July of last year, <a href=\"https://letsencrypt.org/\">Let's Encrypt</a> announced that it would begin <a href=\"https://letsencrypt.org/2017/07/06/wildcard-certificates-coming-jan-2018.html\">issuing Wildcard certificates</a> for free in January of 2018. Although a little late, the organization <a href=\"https://community.letsencrypt.org/t/acme-v2-and-wildcard-certificate-support-is-live/55579\">has announced</a> that Wildcard certificate support is now live.</p>\n\n<p>In addition to these certificates, the organization has updated its <a href=\"https://datatracker.ietf.org/wg/acme/about/\">ACME protocol</a> to version 2.0. ACMEv2 is required for clients that want to use Wildcard certificates.</p>\n\n<p>Wildcard certificates enable site administrators to secure all sub domains with a single certificate. This can be especially convenient for WordPress Multi-site networks.</p>\n\n<p>Let's Encrypt is working on transitioning all clients and subscribers to ACMEv2, though it hasn't set a time table on when it will expire the ACMEv1 API. </p>\n\n<p>In July of 2017, Let's Encrypt was securing 47 million domains. Today, the organization is <a href=\"https://letsencrypt.org/stats/\">securing nearly 70 million domains with 54 million certificates</a>. In the United States, nearly 80% of sites loaded in Firefox are through HTTPS.</p>\n\n<p>Let's Encrypt is an open certificate authority that's part of the non-profit <a href=\"https://letsencrypt.org/isrg/\">Internet Security Research Group</a>. It's mission is to make 100% of the web HTTPS. Operations are financed through sponsors and donations. If this is a mission you believe in, please consider <a href=\"https://letsencrypt.org/donate/\">donating</a> to the project.<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2018 17:23:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WPWeekly Episode 308 – Wildcard SSL Certificates For All\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=78291&preview=true&preview_id=78291\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wpweekly-episode-308-wildcard-ssl-certificates-for-all\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2349:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss the news of the week including the results from the 2018 Stack Overflow survey, Tech Crunch’s rebuild, and Let’s Encrypt adding support for wildcard certificates. We also talk about Google working towards AMP or parts of it becoming official web standards. I ranted about how the mobile experience on the web sucks, and we end the show with some event news.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/stack-overflow-survey-respondents-still-rank-wordpress-among-the-most-dreadful-platforms\">Stack Overflow Survey Respondents Still Rank WordPress Among the Most Dreadful Platforms</a><br />\n<a href=\"https://www.theverge.com/2018/3/8/17095078/google-amp-accelerated-mobile-page-announcement-standard-web-packaging-urls\">Inside Google’s plan to make the whole web as fast as AMP</a><br />\n<a href=\"https://community.letsencrypt.org/t/acme-v2-and-wildcard-certificate-support-is-live/55579\">ACME v2 and Wildcard Certificate Support is Live</a><br />\n<a href=\"https://techcrunch.com/2018/03/13/welcome-to-the-new-techcrunch/\">TechCrunch rebuilt using the REST API</a><br />\n<a href=\"https://wptavern.com/wpcampus-scheduled-for-july-12-14-in-st-louis-mo\">WPCampus Scheduled for July 12-14 in St. Louis, MO</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://themeshaper.com/2018/03/07/designing-gutenberg-block-driven-themes-with-sketch/\">Designing Themes with Gutenberg Blocks and Sketch</a></p>\n<p><a href=\"https://www.pioneerdj.com/en-us/product/controller/ddj-1000/black/overview/\">DDJ-1000 The 4-channel professional performance DJ controller for rekordbox dj</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 21st 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #308:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2018 01:09:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"HeroPress: A look back: Tamsin Taylor, Freedom Through Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2484\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/#utm_source=rss&utm_medium=rss&utm_campaign=a-look-back-tamsin-taylor-freedom-through-blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3463:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/10/100516-2-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: We cannot know the end of any journey until we find ourselves there.\" /><p>In August of 2016 I saw <a href=\"https://wordpress.tv/2016/08/09/tamsin-taylor-a-heros-journey/\">a WordCamp talk on WordPress.tv</a> called “A Hero’s Journey”, and I thought that seemed like something I should know a lot more about. A short time later I was speaking with Tamsin Taylor on Slack.</p>\n<p><img class=\"aligncenter wp-image-2485 size-full\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/03/Screen-Shot-2018-03-14-at-8.46.22-AM.png\" alt=\"A greeting conversation\" width=\"356\" height=\"201\" /></p>\n<p>I love telling stories, but I love hearing them more. Tamsin told me a story grief and loss, and how WordPress provided an outlet for those feelings. I hope her story resonates with you as well.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/bumpy-journey-becoming/\">The Bumpy Journey of Becoming</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: A look back: Tamsin Taylor, Freedom Through Blogging\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=A%20look%20back%3A%20Tamsin%20Taylor%2C%20Freedom%20Through%20Blogging&via=heropress&url=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: A look back: Tamsin Taylor, Freedom Through Blogging\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F&title=A+look+back%3A+Tamsin+Taylor%2C+Freedom+Through+Blogging\" rel=\"nofollow\" target=\"_blank\" title=\"Share: A look back: Tamsin Taylor, Freedom Through Blogging\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/&media=https://heropress.com/wp-content/uploads/2016/10/100516-2-150x150.jpg&description=A look back: Tamsin Taylor, Freedom Through Blogging\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: A look back: Tamsin Taylor, Freedom Through Blogging\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/\" title=\"A look back: Tamsin Taylor, Freedom Through Blogging\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/\">A look back: Tamsin Taylor, Freedom Through Blogging</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2018 12:46:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: Stack Overflow Survey Respondents Still Rank WordPress Among the Most Dreadful Platforms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78278\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/stack-overflow-survey-respondents-still-rank-wordpress-among-the-most-dreadful-platforms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2902:\"<p><a href=\"https://stackoverflow.com/\">Stack Overflow</a>, a Q&A community for developers, has published the results of <a href=\"https://insights.stackoverflow.com/survey/2018/\">its 2018 developer survey</a>. The survey was held between January 8th through the 28th and includes responses from 101,592 software developers from 183 countries across the world. This is nearly twice the amount of responses compared to <a href=\"https://insights.stackoverflow.com/survey/2017#methodology\">last year’s survey</a>.</p>\n<p><a href=\"https://insights.stackoverflow.com/survey/2017#technology-most-loved-dreaded-and-wanted-platforms\">Last year</a>, WordPress was the third most dreaded software platform behind Salesforce and SharePoint. This year, WordPress has improved in the rankings and is the sixth most dreaded platform. Respondents found Windows Phone, Mainframe, Salesforce, Drupal, and SharePoint to be more dreadful.</p>\n<img />WordPress is the sixth most dreaded software platform\n<p>Despite making headway, WordPress has <a href=\"https://wptavern.com/stack-overflow-developer-survey-ranks-wordpress-as-the-3rd-most-dreaded-technology\">consistently ranked near the top</a> in Stack Overflow’s survey for most dreadful platform. Asking developers why is probably akin to opening <a href=\"https://en.wikipedia.org/wiki/Pandora%27s_box\">Pandora’s box</a>.</p>\n<p>JavaScript was once again the <a href=\"https://insights.stackoverflow.com/survey/2018/#most-popular-technologies\">most popular technology</a> with HTML, CSS, and SQL following closely behind. Among the various JavaScript frameworks and libraries that exist, <a href=\"https://insights.stackoverflow.com/survey/2018/#technology-frameworks-libraries-and-tools\">Node.js is the most commonly used</a> followed by Angular and React.</p>\n<p>The survey introduced a few new topics this year, including questions about <a href=\"https://insights.stackoverflow.com/survey/2018/#technology-and-society\">artificial intelligence</a> and ethics. When <a href=\"https://insights.stackoverflow.com/survey/2018/#work-what-would-developers-do-if-asked-to-write-code-for-an-unethical-purpose\">posed with a hypothetical situation</a> in which a developer was asked if they would write code for unethical purposes, more than half of the respondents said no. Also of note is that <a href=\"https://insights.stackoverflow.com/survey/2018/#developer-profile-contributing-to-open-source\">less than half</a> of the respondents say they contribute to open source.</p>\n<p>There are a lot of interesting data points in the survey. I encourage you to <a href=\"https://insights.stackoverflow.com/survey/2018/#overview\">check out the results</a> and let me know in the comments what sticks out to you.</p>\n<p><strong>Updated 3/14/2018</strong> Corrected to say that WordPress has improved in the rankings and is therefor, less dreadful than before.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2018 10:08:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: WPCampus Scheduled for July 12-14 in St. Louis, MO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78273\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/wpcampus-scheduled-for-july-12-14-in-st-louis-mo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1138:\"<p><a href=\"https://2018.wpcampus.org/about/\">WPCampus</a>, an in-person conference dedicated to WordPress in higher education <a href=\"https://2018.wpcampus.org/\">has announced</a> its third annual event will be held July 12-14 at <a href=\"https://wustl.edu/\">Washington University</a> in St. Louis, MO. The <a href=\"https://2018.wpcampus.org/call-for-speakers/application/\">call for speakers</a> is open until April 7th. The event is two months after <a href=\"https://2018.stlouis.wordcamp.org/\">WordCamp St. Louis </a>which will also be held at Washington University.</p>\n<p>WPCampus held its first event in 2016 in Sarasota, FL, and its second in 2017 in Buffalo, NY. The schedule is not yet finalized but to get an idea on what to expect, check out the <a href=\"http://wpcampus.org/videos/\">video presentations</a> from previous events. Organizers expect about 200 attendees and are accepting <a href=\"https://2018.wpcampus.org/sponsors/\">sponsorship inquiries</a>.</p>\n<p>Tickets are not yet available but those interested in attending can sign up to the WPCampus mailing list where ticket information will be distributed first.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Mar 2018 00:12:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Post Status: Network effects and WordPress — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=44341\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://poststatus.com/network-effects-wordpress-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2200:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian discuss the power of network effects and how they relate to WordPress’ increasing market share and maturity. WordPress has recently hit two major milestones, turning 15 years old and reaching 30% market share of the top 10 million websites, and we spend this episode reflecting on the innovations that brought us here and where innovations are likely to occur over the next 10 years.</p>\n<p>We’ve come quite a long way in these 15 years. From the famous 5-minute install to being entirely pre-installed. From a supportive band of volunteers and vast ecosystem of free software to the commercially supported and highly-polished products that exist today. There is a lot about WordPress to be thankful for, and a lot of great things that will exist in the future because of it. And you can hear a bit about all of that on this episode of the Post Status Draft podcast.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://medium.com/evergreen-business-weekly/the-power-of-network-effects-why-they-make-such-valuable-companies-and-how-to-harness-them-5d3fbc3659f8\">The Power of Network Effects</a></li>\n<li>Mel Choice’s LoopConf presentation on <a href=\"https://loopconf.com/talk/customizing-the-future/\">Customizing the Future</a></li>\n</ul>\n<h3>Sponsor: Yoast</h3>\n<p>Yoast SEO Premium gives you 24/7 support from a great support team and extra features such as a redirect manager, recommended internal links, tutorial videos and integration with Google Webmaster Tools! Check out <a href=\"https://yoast.com/\">Yoast SEO Premium</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Mar 2018 20:18:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Yoast Launches Fund to Increase Speaker Diversity at Tech Conferences\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78248\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/yoast-launches-fund-to-increase-speaker-diversity-at-tech-conferences\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1421:\"<p>In an effort to increase speaker diversity at conferences worldwide, the team at Yoast SEO has <a href=\"https://yoast.com/yoast-diversity-fund/\">launched</a> a diversity fund. The fund will pledge a minimum of €25,000 each year. Its purpose is to remove the financial burdens that can cause minorities or underrepresented groups to speak at conferences.</p>\n<p>“There are WordCamps throughout the world, these are conferences about, by and for the WordPress community,” Joost de Valk said.</p>\n<p>“While we already sponsor a lot of them, they tend to not have the budget to pay for speakers’ travel and accommodation cost. The same applies to other conferences about open source, certainly those that are not commercially run. We want to take away that particular reason for not having a diverse conference.”</p>\n<p>Eligible candidates will be reimbursed €1,000 for travel and accommodations per event. In order to qualify for the fund, speakers must meet the following requirements:</p>\n<ul>\n<li>Is a part of – or identifies as part of – a typically underrepresented group.</li>\n<li>The conference is not commercial.</li>\n<li>The conference targets either the WordPress, Magento, or TYPO3 community.</li>\n<li>Has been accepted as a speaker to the conference.</li>\n</ul>\n<p>To submit an application, email diversity-fund at yoast.com where applications are reviewed within a week.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2018 03:20:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: WPWeekly Episode 307 – Thirty Percent of the Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=78242&preview=true&preview_id=78242\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/wpweekly-episode-307-thirty-percent-of-the-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2423:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I start with a continued discussion of AMP from last week. We cover the big releases of the week including Jetpack, Genesis, Yoast SEO, and Gutenberg. We discuss a new project that aims to determine Gutenberg compatible plugins, debate the terminology used to describe WordPress’ market share, and a new plugin that makes WordPress updates more secure.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://make.wordpress.org/core/2018/03/02/whats-new-in-gutenberg-2nd-march/\">Gutenberg 2.3, Now With Nested Blocks</a><br />\n<a href=\"https://studiopress.blog/genesis-2-6/\">Genesis 2.6</a><br />\n<a href=\"https://yoast.com/yoast-seo-7-0/\">Yoast SEO 7.0</a><br />\n<a href=\"https://jetpack.com/category/releases/\">Jetpack 5.9</a><br />\n<a href=\"https://wptavern.com/4500-plugins-need-your-help-in-determining-gutenberg-compatibility\">4,500 Plugins Need Your Help in Determining Gutenberg Compatibility</a><br />\n<a href=\"https://wptavern.com/new-plugin-makes-wordpress-core-updates-more-secure-by-requiring-cryptographic-signature-verification\">New Plugin Makes WordPress Core Updates More Secure by Requiring Cryptographic Signature Verification</a><br />\n<a href=\"https://wptavern.com/wordpress-now-used-on-30-of-the-top-10-million-sites\">WordPress Now Used on 30% of the Top 10 Million Sites</a></p>\n<h2>Picks of the Week:</h2>\n<p>Mel Choyce’s presentation on <a href=\"https://wptavern.com/conceptual-ideas-on-how-the-customizer-could-integrate-with-gutenberg\">Customizing the Future</a> at LoopConf.</p>\n<p>Felix Arntz’s presentation on a Global Admin, a <a href=\"https://www.youtube.com/watch?v=V085zCBdRfc\">deep dive into multi-network organization</a> at LoopConf.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 14th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #307:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2018 03:39:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Back to Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47991\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2018/03/back-to-blogging/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"<p>I really enjoyed <a href=\"http://tomcritchlow.com/2018/02/23/small-b-blogging/\">Tom Critchlow's post Small b blogging</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2018 22:59:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Conceptual Ideas on How the Customizer Could Integrate With Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/conceptual-ideas-on-how-the-customizer-could-integrate-with-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1598:\"<p>While the initial focus of Gutenberg is the editor, the second focus is the Customization experience in WordPress. <a href=\"https://choycedesign.com/\">Mel Choyce</a>, Product Designer at Automattic, recently spoke at <a href=\"https://loopconf.com/\">LoopConf</a>, on the <a href=\"https://loopconf.com/talk/customizing-the-future/\">past, present, and future</a> of the customizer.</p>\n<p>Choyce begins the presentation by describing when and how the customizer was added to WordPress. Fun fact, the customizer or what was known as the Theme Customizer at the time, was added to <a href=\"https://wordpress.org/news/2012/06/green/\">WordPress 3.4 “Green”</a> in June 2012.</p>\n<p>The session continues with Choyce showcasing new features and enhancements that have been made to the customizer since 2012. Near the 23 minute mark, Choyce shows conceptual images of what the customization experience could be like when implemented with Gutenberg.</p>\n<p>In the experimental images, you can see options to choose page templates or layouts, live previewing changes to blocks, global site styles, and a standard set of user interface patterns. The ideas presented are concepts and likely to change.</p>\n<p>Because the session was recorded with a picture-in-picture, I’m not able to provide high quality screen captures of the conceptual images. To see those items in detail, I recommend viewing the video in full-screen 1080p. You can full all of the LoopConf sessions for free via <a href=\"https://www.youtube.com/channel/UCAwOVsWiMdlz6snWRF2HdSQ\">their YouTube channel</a>.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2018 10:17:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"HeroPress: Building A New Life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2480\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://heropress.com/essays/building-a-new-life/#utm_source=rss&utm_medium=rss&utm_campaign=building-a-new-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12981:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/03/030718-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Plan your business around what matters to you/\" /><p>This is the story of how I co-founded Barn2 Media with my husband Andy, and scaled it from a startup to one of the UK’s best known WordPress agencies – all while working part-time.</p>\n<p>I’ll tell you about the challenges I faced in building a WordPress business that is compatible with a good work-life balance. I’ll share what I did each time the growing business started to threaten my lifestyle, and how you can do the same.</p>\n<h2>The Beginning</h2>\n<p>I had a traditional full-time job throughout my 20’s. I enjoyed building my career and earning a regular salary, but didn’t like the lack of flexibility that came with it.</p>\n<p>I didn’t like having to arrive at work by a fixed time, or being unable to choose when I worked. As a hard-working person, it felt counter-productive to be forced to work set hours when I may not be at my best.</p>\n<p>My daily commute was anything from 25-50 minutes (which I realise is less than many people). It felt like a waste of time as I could work just as well from home, not to mention the environmental impact of driving so far just to sit in an office. Day-to-day tasks such as ordering items for home delivery became a big deal, as I wasn’t home during the day.</p>\n<p>As a result, I spent most of my 20’s simultaneously building my career in a traditional job, while dreaming about running my own business and working for myself. Andy felt the same about his own job as a senior software developer.</p>\n<blockquote><p>I think that most people want a better lifestyle, but not many actually do anything about it. I thought I was one of those people.</p></blockquote>\n<p>Andy and I would talk endlessly about different business ideas (most of them terrible!) and even experimented with building a few websites that were never launched. However, we didn’t have the drive to make it happen and launch a business in the real world.</p>\n<h2>Starting a Business</h2>\n<p>In late 2009, Andy had finally had enough of his job and we agreed that it was time for him to quit. We decided to start a web design business together. He would work solely on the new business, while I would support it alongside my main job (which I didn’t hate, even though I didn’t like the lifestyle).</p>\n<p>We started by building WordPress websites for small local businesses. Andy built the websites and I was responsible for copywriting and marketing. We approached local tradespeople who didn’t already have a website – back in 2010, there were still a lot of these! Our first clients were local plumbers, electricians, a washing machine repair shop, etc.</p>\n<p>These early projects were quite low budget. The average hourly rate was quite low because we were still learning and hadn’t perfected our processes yet. We wasted a lot of time on projects where we had under-quoted but were committed to honoring the agreed price.</p>\n<blockquote><p>We made a lot of mistakes, and learned from them all!</p></blockquote>\n<p>By Year 2, the business was making the equivalent of a fairly low salary for one person. However, we had to work a lot for a relatively small income. This encouraged us to work more hours, and it wasn’t bringing the lifestyle benefits I was looking for.</p>\n<h2>Lifestyle Tip #1: Learn to Specialize</h2>\n<p>In late 2010, it occurred to me that we were building all our websites in WordPress but not advertising ourself as a WordPress company. I wondered whether people were actually searching for WordPress experts and whether this could be a good way to advertise. That may seem obvious in 2018 now WordPress is the world’s biggest web platform – but it was a genuine question back in 2010.</p>\n<p>On a whim, I invested $100 in Google AdWords targeting keywords such as ‘WordPress web design’ and ‘WordPress developer’. Amazingly, we were overwhelmed with enquiries and quickly brought in over $4,000 of business – not a bad return on investment! The work came from medium sized companies who had never used our services before, with higher budgets.</p>\n<blockquote><p>Positioning ourselves as WordPress specialists completely changed the profile of our client base, as well as the budgets we were working with.</p></blockquote>\n<p>This vastly increased our average hourly income, so we were making more money without having to work more hours. Finally, it felt like a proper business with a better work-life balance.</p>\n<h2>Lifestyle Tip #2: Build a (virtual) team</h2>\n<p>The business grew quickly under its new identity as a specialist WordPress agency. By mid-2011, we had more work than we could manage ourselves. I also had a baby and increased my hours on the business while on maternity leave – eventually not returning to my old job. We still needed to increase the company’s income, while working towards the lifestyle we wanted.</p>\n<p>We grew the business to the next level by building a virtual team.</p>\n<blockquote><p>I felt quite strongly that I didn’t want to become a traditional employer with a team of staff, all working together in an office. That would bring me back to the lifestyle I started with!</p></blockquote>\n<p>Instead, I decided to recruit a team of freelancers.</p>\n<p>It took time to find the right freelancers, but the good news is that you can try someone out on a single project with no further commitment. If it doesn’t work out, then you don’t have to work with them again. Through trial and error, I built a team of freelancers with different WordPress-related skills. This increased capacity and allowed us to take on more projects without having to work more hours.</p>\n<p>I was still managing all the projects, but could take a step back and wasn’t directly building the websites. Finally, it felt like a proper WordPress agency.</p>\n<h2>Lifestyle Tip #3: Selling WordPress products</h2>\n<p>By building a distributed team, the business became more and more successful. We were taking on more and more projects, and I was managing all of them. By the time we were running 20 projects at once, I had reached the limits of my capacity and was having to work a lot of hours.</p>\n<p>From 2014-15, I experimented with working with freelance project managers, but had to give up because quality was dropping and our clients were less happy. I realised that with the current business model, I could only continue growing the business by working more and more hours. This wasn’t what I had been working towards!</p>\n<p>It was time for Andy and I to pursue our other dream: selling WordPress products. We’d been talking about this since the early days of the business, but the client projects had kept us so busy that we’d never done anything about it.</p>\n<p>In early 2016, Andy stepped out of the client business and started writing WordPress and WooCommerce plugins to sell. I continued managing client projects for the next 6 months, until the plugins were making enough money to stop taking on new projects and I could spend all my time marketing and supporting the plugins.</p>\n<blockquote><p>Selling WordPress plugins has been very successful because we already knew the market inside out from our years of developing WordPress sites.</p></blockquote>\n<p>We knew where the gaps were and what plugin customers want. We knew where other plugin companies get it wrong, and could learn from their mistakes without making the same mistakes ourselves!</p>\n<p>By launching several plugins, we could listen to what our customers were asking for and build even more. In October 2016, we launched our <a href=\"https://barn2.co.uk/wordpress-plugins/woocommerce-product-table/\">WooCommerce Product Table plugin</a> because so many people asked for a way to list products in a table with add to cart buttons. This immediately became our bestselling plugin and has sold more than all our other plugins combined. Since then, the plugin business has gone from strength to strength.</p>\n<blockquote><p>I have found that selling WordPress products brings a much better work-life balance than providing WordPress services.</p></blockquote>\n<p>We receive (many) plugin support requests every day, but each one takes relatively little time and is less pressured than fixing problems for web design clients. The whole business feels much more relaxed, and I don’t feel guilty about taking time off.</p>\n<p>Between the two of us, we spend a couple of hours a day on plugin support. We continue improving the plugins, marketing, adding features and building the business on top of that. However, all of this is optional and can easily be done while working part-time.</p>\n<h2>Snow Day! Putting It Into Practice</h2>\n<p>Before we finish, I’ll tell you about my week. Today is Friday. At 10.30am on Wednesday, I received a text that my daughter’s school had closed for the rest of the week because of the unusual snow here in the UK.</p>\n<p>The parents with traditional jobs panicked and had to quickly arrange childcare or time-off work. Some of them were stuck in cars on snowed-in roads as they tried to return to the village. No one could get to work the next day. A lot of people lost a lot of money.</p>\n<p>Andy and I simply stopped work, put on our snow gear, walked the 10 minutes to the school, and then went sledging. Since then, we’ve been sharing the childcare in between responding to plugin support requests (and writing this article!). We’ve had 37 plugin sales on our website since the school closed, even though we’ve been working less hours than usual. Now, that’s what I’ve been working towards!</p>\n<h2>Conclusion</h2>\n<p>I’ve worked hard and have been extremely committed to building Barn2 Media. However, this has always been on the condition that it wouldn’t sacrifice my lifestyle goals.</p>\n<blockquote><p>For me, the ideal business is measured against a combination of financial success and lifestyle benefits. If the founders are working 70 hours a week to keep the money coming in, then it’s not a successful business!</p></blockquote>\n<p>You can do the same. Design a WordPress business that will give you the lifestyle you want, as well as making money. If you love working with people, build a team and provide WordPress services (WordPress design and development are good for this). If you want to travel, choose work that you can do remotely from different time zones (WordPress products are good for this). Plan your business around what matters to you.</p>\n<p>WordPress is such a huge ecosystem that it comes with many opportunities to build a successful business. With a bit of extra thought and planning, you can build a WordPress business that is successful AND lets you life the lifestyle you’ve always wanted. That is the true measure of success.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Building A New Life\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Building%20A%20New%20Life&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Building A New Life\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F&title=Building+A+New+Life\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Building A New Life\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/building-a-new-life/&media=https://heropress.com/wp-content/uploads/2018/03/030718-150x150.jpg&description=Building A New Life\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Building A New Life\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/building-a-new-life/\" title=\"Building A New Life\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/building-a-new-life/\">Building A New Life</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2018 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Katie Keith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress Now Used on 30% of the Top 10 Million Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78214\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordpress-now-used-on-30-of-the-top-10-million-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2379:\"<p><a href=\"https://w3techs.com/\">W3Techs</a>, a survey company that monitors usage of various web technologies, <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">is reporting</a> that WordPress has reached 30% usage or 60.2% market share of all the websites whose content management systems it knows about. This represents a 0.6% increase since February 1st and 13.1% over the last seven years.</p>\n<p>Just five days ago, Matt Mullenweg, co-creator of WordPress, brought attention to the approaching milestone.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"und\" dir=\"ltr\">29.9%…</p>\n<p>— Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/969378724305973249?ref_src=twsrc%5Etfw\">March 2, 2018</a></p></blockquote>\n<p></p>\n<p>When it comes to WordPress’ market share numbers, W3Techs is the most cited source. While some say that <a href=\"https://thenextweb.com/dd/2018/03/05/30-of-the-web-now-runs-on-wordpress/\">WordPress now powers 30% of the web</a>, <a href=\"https://w3techs.com/technologies\">technically</a>, it is used by 30% of the top 10 million sites based on traffic according to <a href=\"https://www.alexa.com/\">Alexa</a>. All sub-domains on WordPress.com and WordPress.org count as one site.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">All the subdomains of <a href=\"https://t.co/37ETZ4JMFf\">https://t.co/37ETZ4JMFf</a> and <a href=\"https://t.co/YtO6Msd90U\">https://t.co/YtO6Msd90U</a> do indeed only count as one site. Sites that are hosted by Automattic under their own domain do count if they have significant traffic on that domain. These are 0.4%, 29.5% are hosted somewhere else.</p>\n<p>— W3Techs (@W3Techs) <a href=\"https://twitter.com/W3Techs/status/969523570530451456?ref_src=twsrc%5Etfw\">March 2, 2018</a></p></blockquote>\n<p></p>\n<p>The internet is larger than the top 10 million sites. According to <a href=\"http://www.internetlivestats.com/total-number-of-websites/\">Internet live stats</a>, there are close to 2 billion sites on the internet although a majority of them are inactive.</p>\n<p>W3Techs’ numbers show that WordPress’ use is growing on sites that receive a lot of traffic and shows no signs of slowing down as it makes <a href=\"https://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share\">its way towards 50%</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2018 10:22:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WPTavern: New Plugin Makes WordPress Core Updates More Secure by Requiring Cryptographic Signature Verification\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://wptavern.com/new-plugin-makes-wordpress-core-updates-more-secure-by-requiring-cryptographic-signature-verification\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4278:\"<p>In 2016, WordFence <a href=\"https://www.wordfence.com/blog/2016/11/hacking-27-web-via-wordpress-auto-update/\">published their findings</a> of a vulnerability that could have compromised the servers that are used to send out WordPress updates. It turned out to be a complex, obscure vulnerability that ignited a conversation surrounding the security of api.wordpress.org and what could happen if the servers were compromised.</p>\n<p>One idea that was brought forth is to digitally sign WordPress core, theme, and plugin updates. For at least five years, <a href=\"https://core.trac.wordpress.org/ticket/25052\">a trac ticket</a> has laid semi-dormant with this idea in mind.</p>\n<p>Fifteen months ago, Scott Arciszewski, Chief Development Officer for Paragon Initiative Enterprises, who is most widely known for his <a href=\"https://paragonie.com/blog/2017/02/cryptographically-secure-php-development\">cryptography engineering work</a>, <a href=\"https://web.archive.org/web/20170214062414/https://medium.com/@CiPHPerCoder/stopmullware-on-the-security-of-27-of-the-websites-on-the-internet-298a7e5b6871\">published an article</a> that has since been taken down, expressing his strong desire for Matt Mullenweg to make secure cryptographic signatures a priority. Mullenweg responded to his post with <a href=\"https://medium.com/@photomatt/wordpress-and-update-signing-51501213e1\">one of his own</a> stating that although WordPress update signing is important, it’s not a high priority.</p>\n<p>“We will at some point; as said above it’s a good idea — can’t hurt, might help,” Mullenweg responded when asked if WordPress was ever going to do update signing. “There are, however, some more important security issues in front of it, that impact millions of sites in the real world, so we are prioritizing those issues above a nice-to-have, defense in-depth effort.”</p>\n<h2>Eric Mann Launches Secure WordPress Updates Plugin</h2>\n<p>While WordPress does not digitally sign updates, Eric Mann, founder of <a href=\"https://displace.tech/\">Displace Technologies, LLC</a>, has <a href=\"https://ttmm.io/tech/introducing-secure-updates-for-wordpress/\">created and released</a> a new plugin that adds code signing to WordPress core updates. It’s called DGXPCO or <a href=\"https://wordpress.org/plugins/dgxpco/\">Digital Guarantees for eXplicitly Permitted Core Operations</a>. You’ll find it on the plugin directory by searching for DGXPCO.</p>\n<p>When installed and activated, the plugin integrates with the core updater and requires that any core update must have a valid signature before it can be installed. The signature provides a secondary source of truth that confirms the integrity of the files. The signatures are created using a Ed25519 public/private keypair and <a href=\"https://github.com/jedisct1/libsodium\">Libsodium</a> to sign the files’ contents.</p>\n<p>Mann keeps the private key offline and has published the public key online. The public key will not change and if a core update is signed by a different key, it is a red flag and the update should be avoided. In addition, commits made to the <a href=\"https://github.com/DisplaceTech/release-hashes\">release hashes repository</a> on GitHub are signed with <a href=\"https://keybase.io/eamann\">Mann’s PGP key</a> to verify that he is the one who added new code.</p>\n<p>Mann admits that the solution is not fool-proof and is working towards improving it. In future versions, the plugin will only notify the user of a WordPress core update if a digital signature is available. Plugins and themes are on the roadmap as well with the ability to opt-in.</p>\n<p>Although he is the only person allowed to digitally sign packages, the model is not sustainable.</p>\n<p>“As I prove out the update system, I’ll also begin adding sets of public keys that are scoped to specific sets of packages,” Mann said. “This will, for example, allow me to whitelist a small number of trusted developers to also sign core packages. It might also empower plugin developers to sign their own releases (but not anyone else’s).”</p>\n<p>Mann is seeking feedback and is hoping the project provides evidence that something like it can be added to WordPress core.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Mar 2018 00:56:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Post Status: Marketing and positioning WordPress products — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=44157\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://poststatus.com/marketing-positioning-wordpress-products-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2776:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>This week BK and BR discuss a number of different aspects surrounding marketing and selling WordPress products and services. The conversation flows from selling benefits vs features, to social proof, to marketing and conversion funnels, to understanding and reacting to the problem space, to customer support, and many things in between. Whether you’re already selling products or services, about to sell something, or routinely buy things, there’s likely something for you in this episode.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li>Krogs’ <a href=\"https://wordpress.tv/2015/12/13/brian-krogsgard-how-to-build-a-compelling-wordpress-product-or-service\">WCUS funnel talk</a>: and <a href=\"https://cdn.poststatus.com/wp-content/uploads/2015/12/krogsgard-wc-us-2015-presentation.pdf\">slides</a></li>\n<li><a href=\"https://wpsessions.com/sessions/understand-price-anchoring/\">Price Anchoring session</a> on WPS</li>\n<li><a href=\"https://poststatus.com/marketing-wordpress-products/\">Tips for marketing WordPress products</a></li>\n<li><a href=\"https://poststatus.com/resources/marketing-success-wordpress-case-study-siteground/\">SiteGround’s Publish presentation</a></li>\n<li><a href=\"https://www.ted.com/talks/barry_schwartz_on_the_paradox_of_choice\">TED talk on decision fatigue and the paradox of choice</a> (also good “<a href=\"https://www.ted.com/talks/dan_gilbert_researches_happiness\">Why we make bad decisions</a>”)</li>\n<li><a href=\"https://stripe.com/atlas/guides/saas-pricing\">Stripe Atlas guide to SaaS pricing</a></li>\n</ul>\n<h3>Sponsor: SiteGround</h3>\n<p><a href=\"https://www.siteground.com/wordpress-hosting.htm/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround</a> is engineered for speed, built for security, and crafted for WordPress. They offer feature-rich managed WordPress hosting with premium support, and are officially recommended by WordPress.org. Check out <a href=\"https://siteground.com/poststatus/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround’s website</a> for a special deal for Post Status listeners, and thanks to SiteGround for being a Post Status partner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Mar 2018 20:24:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: 4,500 Plugins Need Your Help in Determining Gutenberg Compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78194\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/4500-plugins-need-your-help-in-determining-gutenberg-compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2608:\"<p>One of the keys to a successful roll out of Gutenberg is plugin compatibility. Without it, users will experience unnecessary frustration and hamper enthusiasm of the new editor. In an effort to figure out what plugins are already compatible with Gutenberg, Daniel Bachhuber <a href=\"https://make.wordpress.org/core/2018/03/01/introducing-the-gutenberg-plugin-compatibility-database/\">has created</a> a <a href=\"https://plugincompat.danielbachhuber.com/\">Gutenberg Plugin Compatibility Database</a>.</p>\n<img />Gutenberg Plugin Compatibility Database\n<p>The database contains 5,000 plugins that represent more than 90% of the total active install count. Plugins are compatible with Gutenberg if they meet the following two requirements.</p>\n<ul>\n<li>A WordPress user can perform the same functional task with Gutenberg active. For instance, if the plugin includes an ‘Add Media’ button, it’s considered Gutenberg-compatible when it has a block registered for the Gutenberg inserter.</li>\n<li>There are no (obvious) errors when the WordPress plugin is active alongside Gutenberg.</li>\n</ul>\n<p>In order to participate in the testing process, you’ll need to <a href=\"https://plugincompat.danielbachhuber.com/#account-details/\">register an account</a> on the site. Once approved, testers will be able to create a fresh sandboxed WordPress install on the site and test randomly selected plugins. After a manual review is complete, plugins will be marked as <code>is_compatible=yes</code> or <code>is_compatible=no</code>.</p>\n<p>Some plugins are already classified with <code>is_compatible=likely_yes</code> or <code>is_compatible=likely_</code>. As reports are completed, two pie charts that display compatibility results at the bottom of the site update automatically.</p>\n<p>Bachhuber estimates that if each plugin takes about a minute to test, they’ll need roughly 75 person-hours to get through the remaining 4,500 plugins in the database. This project is a great opportunity for individuals and businesses to contribute back to WordPress via the <a href=\"https://ma.tt/2014/09/five-for-the-future/\">Five for The Future initiative</a>.</p>\n<p>Ideal testers are those who can review dozens of plugins, but even reviewing a few will help the project. If you’re interested in contributing, check out the project’s <a href=\"https://github.com/danielbachhuber/gutenberg-plugin-compatibility#gutenberg-plugin-compatibility\">GitHub page</a> to learn what’s involved in the testing process. Alternatively, visitors can watch the following YouTube video.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Mar 2018 00:57:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Dev Blog: The Month in WordPress: February 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5613\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/03/the-month-in-wordpress-february-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5935:\"<p>Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress 4.9.3 & 4.9.4</h2>\n\n<p>Early in the month, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">version 4.9.3 of WordPress was released</a>, including a number of important bug fixes. Unfortunately it introduced a bug that prevented many sites from automatically updating to future releases. To remedy this issue, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/\">version 4.9.4 was released</a> the following day requiring many people to manually update their sites.</p>\n\n<p>While this kind of issue is always regrettable, the good thing is that it was fixed quickly, and that not all sites had updated to 4.9.3 yet, which meant they bypassed the bug in that version.</p>\n\n<p>You can find out more technical information about this issue <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">on the Core development blog</a>.</p>\n\n<h2>The WordCamp Incubator is Back</h2>\n\n<p>In 2016, the Global Community Team ran an experimental program to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event. This program was dubbed the WordCamp Incubator, and it was so successful in the three cities where it ran that <a href=\"https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/\">the program is back for 2018</a>.</p>\n\n<p>Right now, the Community Team is looking for cities to be a part of this year’s incubator by <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application\">taking applications</a>. Additionally, each incubator community will need an experienced WordCamp organizer to assist them as a co-lead organizer for their event — if that sounds interesting to you, then you can <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-co-lead-application\">fill in the application form for co-leads</a>.</p>\n\n<p>You can find out further information about the WordCamp Incubator <a href=\"https://make.wordpress.org/community/2018/02/19/wordcamp-incubator-program-2018-announcement/\">on the Community Team blog</a>.</p>\n\n<h2>WordPress Meetup Roundtables scheduled for March</h2>\n\n<p>In order to assist local WordPress meetup organizers with running their meetup groups, some members of the Community Team have organized <a href=\"https://make.wordpress.org/community/2018/02/23/wordpress-meetup-roundtables-scheduled-for-march/\">weekly meetup roundtable discussions through the month of March</a>.</p>\n\n<p>These will be run as video chats at 16:00 UTC every Wednesday this month and will be a great place for meetup organizers to come together and help each other out with practical ideas and advice.</p>\n\n<p>If you are not already in the WordPress meetup program and would like to join, you can find out more information in <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the WordPress Meetup Organizer Handbook</a>.</p>\n\n<h2>GDPR Compliance in WordPress Core</h2>\n\n<p>The General Data Protection Regulation (GDPR) is an upcoming regulation that will affect all online services across Europe. In order to prepare for this, a working group has been formed to make sure that WordPress is compliant with the GDPR regulations.</p>\n\n<p>Aside from the fact that this will be a requirement for the project going forward, it will also have an important and significant impact on the privacy and security of WordPress as a whole. The working group has posted <a href=\"https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/\">their proposed roadmap</a> for this project and it looks very promising.</p>\n\n<p>To get involved in building WordPress Core, jump into the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>WPShout published <a href=\"https://wpshout.com/complete-guide-wordpress-security/\">a thorough guide to WordPress security</a>.</li>\n <li>The Community Team has published interesting statistics from the WordCamp program in <a href=\"https://make.wordpress.org/community/2018/02/27/wordcamps-in-2016/\">2016</a> and <a href=\"https://make.wordpress.org/community/2018/02/28/wordcamps-in-2017/\">2017</a>.</li>\n <li><a href=\"https://make.wordpress.org/community/2018/02/15/potential-addition-of-a-new-onboarding-team/\">An intriguing proposal has been made</a> for a new ‘Onboarding’ team to be started in the WordPress project.</li>\n <li>The new editing experience for WordPress, named Gutenberg, continues to be actively developed with <a href=\"https://make.wordpress.org/core/2018/02/16/whats-new-in-gutenberg-16th-february/\">a feature-packed release</a> this past month.</li>\n <li>The Advanced WordPress Facebook group <a href=\"https://www.youtube.com/watch?v=4vS_jR5-nIo\">held an interview with WordPress co-founder, Matt Mullenweg</a> about the Gutenberg project.</li>\n <li><a href=\"https://make.wordpress.org/meta/2018/02/27/two-factor-authentication-on-wp-org/\">Two factor authentication is on its way to the WordPress.org network</a> — this will be a great improvement to the overall security of the project.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Mar 2018 08:41:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WPWeekly Episode 306 – AMP, GDPR, and Brewing Beer At The Boss’ House\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=78185&preview=true&preview_id=78185\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/wpweekly-episode-306-amp-gdpr-and-brewing-beer-at-the-boss-house\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1707:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> joins me live from Hutchinson, KS, to talk about the news of the week. We started off the show discussing the GDPR and the number of things that need to be considered surrounding the right to be forgotten.</p>\n<p>We also have a lengthy conversation about AMP, the open web, and Automattic’s relationship with Google. Last but not least, we discussed Automattic’s recent hiring of Kinsey Wilson to be president of the company.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/matt-cromwell-hosts-matt-mullenweg-in-qa-gutenberg-interview\">Matt Cromwell Hosts Matt Mullenweg in Q&A Gutenberg Interview</a><br />\n<a href=\"https://wptavern.com/new-team-forms-to-facilitate-gdpr-compliance-in-wordpress-core\">New Team Forms to Facilitate GDPR Compliance in WordPress Core</a><br />\n<a href=\"https://www.poynter.org/news/one-time-npr-and-nyt-digital-chief-new-adventure-wordpress\">For one-time NPR and NYT digital chief, a new adventure: WordPress</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 7th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #306:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Mar 2018 02:19:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 Apr 2018 04:32:34 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 16 Apr 2018 04:15:27 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'),(86415,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1523896354','no'),(86416,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1523853154','no'),(86417,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1523896354','no'),(86418,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/04/gdpr-compliance-tools-in-wordpress/\'>GDPR Compliance Tools in WordPress</a> <span class=\"rss-date\">April 12, 2018</span><div class=\"rssSummary\">GDPR compliance is an important consideration for all WordPress websites. The GDPR Compliance team is looking for help to test the privacy tools that are currently being developed in core.</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2018/04/russells-treadmill/\'>Matt: Russell’s Treadmill</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/04/gdpr-compliance-tools-in-wordpress/\'>Dev Blog: GDPR Compliance Tools in WordPress</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-312-dragon-drop-wordpress-accessibility-statement-and-woocommerce-gdpr\'>WPTavern: WPWeekly Episode 312 – Dragon Drop, WordPress Accessibility Statement, and WooCommerce GDPR</a></li></ul></div>','no'),(86421,'om_expo18_site_logo_image','','yes'),(86422,'new_admin_email','atiq.cems@gmail.com','yes'),(86423,'adminhash','a:2:{s:4:\"hash\";s:32:\"edd870236bcd63b2f914dc263b075b83\";s:8:\"newemail\";s:19:\"atiq.cems@gmail.com\";}','yes'),(86426,'_transient_doing_cron','1526667586.4069659709930419921875','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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2435 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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'),(4,5,'_edit_last','1'),(5,5,'_edit_lock','1523853991:1'),(6,6,'_wp_attached_file','2015/05/image003.jpg'),(7,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:93;s:6:\"height\";i:128;s:4:\"file\";s:20:\"2015/05/image003.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(8,7,'_wp_attached_file','2015/05/image001.jpg'),(9,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1150;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2015/05/image001.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-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:20:\"image001-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"image001-1024x801.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"image001-125x97.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:20:\"image001-615x481.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(10,5,'_wp_page_template','template-home.php'),(11,11,'_menu_item_type','post_type'),(12,11,'_menu_item_menu_item_parent','0'),(13,11,'_menu_item_object_id','5'),(14,11,'_menu_item_object','page'),(15,11,'_menu_item_target',''),(16,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(17,11,'_menu_item_xfn',''),(18,11,'_menu_item_url',''),(20,13,'_wp_attached_file','2015/05/map22.gif'),(21,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:202;s:4:\"file\";s:17:\"2015/05/map22.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(22,12,'_edit_last','1'),(23,12,'_edit_lock','1475906596:1'),(24,12,'_wp_page_template','default'),(25,15,'_menu_item_type','post_type'),(26,15,'_menu_item_menu_item_parent','18'),(27,15,'_menu_item_object_id','12'),(28,15,'_menu_item_object','page'),(29,15,'_menu_item_target',''),(30,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31,15,'_menu_item_xfn',''),(32,15,'_menu_item_url',''),(34,16,'_edit_last','1'),(35,16,'_wp_page_template','default'),(36,16,'_edit_lock','1456384408:1'),(37,18,'_menu_item_type','post_type'),(38,18,'_menu_item_menu_item_parent','0'),(39,18,'_menu_item_object_id','16'),(40,18,'_menu_item_object','page'),(41,18,'_menu_item_target',''),(42,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43,18,'_menu_item_xfn',''),(44,18,'_menu_item_url',''),(46,19,'_edit_last','1'),(47,19,'_edit_lock','1475907212:1'),(48,19,'_wp_page_template','default'),(49,21,'_menu_item_type','post_type'),(50,21,'_menu_item_menu_item_parent','18'),(51,21,'_menu_item_object_id','19'),(52,21,'_menu_item_object','page'),(53,21,'_menu_item_target',''),(54,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(55,21,'_menu_item_xfn',''),(56,21,'_menu_item_url',''),(58,22,'_edit_last','1'),(59,22,'_edit_lock','1475907420:1'),(60,22,'_wp_page_template','default'),(61,24,'_menu_item_type','post_type'),(62,24,'_menu_item_menu_item_parent','18'),(63,24,'_menu_item_object_id','22'),(64,24,'_menu_item_object','page'),(65,24,'_menu_item_target',''),(66,24,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(67,24,'_menu_item_xfn',''),(68,24,'_menu_item_url',''),(70,25,'_edit_last','1'),(71,25,'_edit_lock','1449652364:1'),(72,25,'_wp_page_template','default'),(73,27,'_menu_item_type','post_type'),(74,27,'_menu_item_menu_item_parent','0'),(75,27,'_menu_item_object_id','25'),(76,27,'_menu_item_object','page'),(77,27,'_menu_item_target',''),(78,27,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(79,27,'_menu_item_xfn',''),(80,27,'_menu_item_url',''),(82,28,'_edit_last','1'),(83,28,'_edit_lock','1432632704:1'),(84,28,'_wp_page_template','default'),(85,30,'_menu_item_type','post_type'),(86,30,'_menu_item_menu_item_parent','0'),(87,30,'_menu_item_object_id','28'),(88,30,'_menu_item_object','page'),(89,30,'_menu_item_target',''),(90,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(91,30,'_menu_item_xfn',''),(92,30,'_menu_item_url',''),(94,31,'_edit_last','1'),(95,31,'_edit_lock','1475907212:1'),(96,31,'_wp_page_template','default'),(97,33,'_menu_item_type','post_type'),(98,33,'_menu_item_menu_item_parent','0'),(99,33,'_menu_item_object_id','31'),(100,33,'_menu_item_object','page'),(101,33,'_menu_item_target',''),(102,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(103,33,'_menu_item_xfn',''),(104,33,'_menu_item_url',''),(106,35,'_edit_last','1'),(107,35,'_edit_lock','1456384612:1'),(108,35,'_wp_page_template','default'),(109,37,'_menu_item_type','post_type'),(110,37,'_menu_item_menu_item_parent','18'),(111,37,'_menu_item_object_id','35'),(112,37,'_menu_item_object','page'),(113,37,'_menu_item_target',''),(114,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(115,37,'_menu_item_xfn',''),(116,37,'_menu_item_url',''),(118,38,'_edit_last','1'),(119,38,'_edit_lock','1475907243:1'),(120,38,'_wp_page_template','default'),(121,40,'_menu_item_type','post_type'),(122,40,'_menu_item_menu_item_parent','0'),(123,40,'_menu_item_object_id','38'),(124,40,'_menu_item_object','page'),(125,40,'_menu_item_target',''),(126,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(127,40,'_menu_item_xfn',''),(128,40,'_menu_item_url',''),(130,41,'_edit_last','1'),(131,41,'_edit_lock','1475907317:1'),(132,41,'_wp_page_template','default'),(133,43,'_menu_item_type','post_type'),(134,43,'_menu_item_menu_item_parent','18'),(135,43,'_menu_item_object_id','41'),(136,43,'_menu_item_object','page'),(137,43,'_menu_item_target',''),(138,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(139,43,'_menu_item_xfn',''),(140,43,'_menu_item_url',''),(142,44,'_edit_last','1'),(143,44,'_edit_lock','1475908705:1'),(144,44,'_wp_page_template','default'),(145,46,'_menu_item_type','post_type'),(146,46,'_menu_item_menu_item_parent','0'),(147,46,'_menu_item_object_id','44'),(148,46,'_menu_item_object','page'),(149,46,'_menu_item_target',''),(150,46,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(151,46,'_menu_item_xfn',''),(152,46,'_menu_item_url',''),(154,47,'_edit_last','1'),(155,47,'_edit_lock','1443862358:1'),(156,48,'_wp_attached_file','2015/05/EXPO-APPLICATION-FORM.pdf'),(157,47,'_wp_page_template','default'),(158,50,'_menu_item_type','post_type'),(159,50,'_menu_item_menu_item_parent','18'),(160,50,'_menu_item_object_id','47'),(161,50,'_menu_item_object','page'),(162,50,'_menu_item_target',''),(163,50,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(164,50,'_menu_item_xfn',''),(165,50,'_menu_item_url',''),(167,60,'_wp_attached_file','2015/05/cems-china.jpg'),(168,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:35;s:4:\"file\";s:22:\"2015/05/cems-china.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(169,61,'_wp_attached_file','2015/05/cems-india.jpg'),(170,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:35;s:4:\"file\";s:22:\"2015/05/cems-india.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(171,65,'_edit_last','1'),(172,65,'_edit_lock','1464163782:1'),(173,65,'_wp_page_template','template-full-width.php'),(258,74,'__defaults_set','1'),(259,74,'filter','raw'),(260,74,'id_field','ID'),(261,75,'__defaults_set','1'),(262,75,'filter','raw'),(263,75,'id_field','ID'),(273,78,'__defaults_set','1'),(274,78,'filter','raw'),(275,78,'id_field','ID'),(282,80,'__defaults_set','1'),(283,80,'filter','raw'),(284,80,'id_field','ID'),(291,82,'__defaults_set','1'),(292,82,'filter','raw'),(293,82,'id_field','ID'),(300,84,'__defaults_set','1'),(301,84,'filter','raw'),(302,84,'id_field','ID'),(309,86,'__defaults_set','1'),(310,86,'filter','raw'),(311,86,'id_field','ID'),(318,88,'__defaults_set','1'),(319,88,'filter','raw'),(320,88,'id_field','ID'),(327,90,'__defaults_set','1'),(328,90,'filter','raw'),(329,90,'id_field','ID'),(336,94,'_menu_item_type','post_type'),(337,94,'_menu_item_menu_item_parent','0'),(338,94,'_menu_item_object_id','65'),(339,94,'_menu_item_object','page'),(340,94,'_menu_item_target',''),(341,94,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(342,94,'_menu_item_xfn',''),(343,94,'_menu_item_url',''),(354,97,'__defaults_set','1'),(355,97,'filter','raw'),(356,97,'id_field','ID'),(487,102,'__defaults_set','1'),(488,102,'filter','raw'),(489,102,'id_field','ID'),(490,103,'__defaults_set','1'),(491,103,'filter','raw'),(492,103,'id_field','ID'),(502,106,'__defaults_set','1'),(503,106,'filter','raw'),(504,106,'id_field','ID'),(511,108,'__defaults_set','1'),(512,108,'filter','raw'),(513,108,'id_field','ID'),(520,110,'__defaults_set','1'),(521,110,'filter','raw'),(522,110,'id_field','ID'),(529,112,'__defaults_set','1'),(530,112,'filter','raw'),(531,112,'id_field','ID'),(538,114,'__defaults_set','1'),(539,114,'filter','raw'),(540,114,'id_field','ID'),(547,116,'__defaults_set','1'),(548,116,'filter','raw'),(549,116,'id_field','ID'),(556,98,'__defaults_set','1'),(557,98,'filter','raw'),(558,98,'id_field','ID'),(562,77,'__defaults_set','1'),(563,77,'filter','raw'),(564,77,'id_field','ID'),(565,76,'__defaults_set','1'),(566,76,'filter','raw'),(567,76,'id_field','ID'),(568,79,'__defaults_set','1'),(569,79,'filter','raw'),(570,79,'id_field','ID'),(571,81,'__defaults_set','1'),(572,81,'filter','raw'),(573,81,'id_field','ID'),(574,83,'__defaults_set','1'),(575,83,'filter','raw'),(576,83,'id_field','ID'),(577,85,'__defaults_set','1'),(578,85,'filter','raw'),(579,85,'id_field','ID'),(580,87,'__defaults_set','1'),(581,87,'filter','raw'),(582,87,'id_field','ID'),(583,89,'__defaults_set','1'),(584,89,'filter','raw'),(585,89,'id_field','ID'),(586,91,'__defaults_set','1'),(587,91,'filter','raw'),(588,91,'id_field','ID'),(589,105,'__defaults_set','1'),(590,105,'filter','raw'),(591,105,'id_field','ID'),(592,104,'__defaults_set','1'),(593,104,'filter','raw'),(594,104,'id_field','ID'),(595,107,'__defaults_set','1'),(596,107,'filter','raw'),(597,107,'id_field','ID'),(598,109,'__defaults_set','1'),(599,109,'filter','raw'),(600,109,'id_field','ID'),(601,111,'__defaults_set','1'),(602,111,'filter','raw'),(603,111,'id_field','ID'),(604,113,'__defaults_set','1'),(605,113,'filter','raw'),(606,113,'id_field','ID'),(607,115,'__defaults_set','1'),(608,115,'filter','raw'),(609,115,'id_field','ID'),(610,117,'__defaults_set','1'),(611,117,'filter','raw'),(612,117,'id_field','ID'),(617,65,'ngg_gallery_id',''),(618,67,'filter','raw'),(619,67,'meta_id','178'),(620,67,'post_id','67'),(621,67,'meta_key','name'),(622,67,'meta_value','photocrati-nextgen_basic_thumbnails'),(623,67,'title','NextGEN Basic Thumbnails'),(624,67,'preview_image_relpath','/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_gallery/static/thumb_preview.jpg'),(625,67,'default_source','galleries'),(626,67,'view_order','10000'),(627,67,'name','photocrati-nextgen_basic_thumbnails'),(628,67,'installed_at_version','2.1.0'),(629,67,'hidden_from_ui',''),(630,67,'__defaults_set','1'),(631,67,'entity_types','WyJpbWFnZSJd'),(632,67,'id_field','ID'),(633,67,'settings','eyJvdmVycmlkZV90aHVtYm5haWxfc2V0dGluZ3MiOiIwIiwidGh1bWJuYWlsX3dpZHRoIjoiMjQwIiwidGh1bWJuYWlsX2hlaWdodCI6IjE2MCIsInRodW1ibmFpbF9jcm9wIjoiMSIsImltYWdlc19wZXJfcGFnZSI6IjIwIiwibnVtYmVyX29mX2NvbHVtbnMiOiIwIiwiYWpheF9wYWdpbmF0aW9uIjoiMCIsInNob3dfYWxsX2luX2xpZ2h0Ym94IjoiMCIsInVzZV9pbWFnZWJyb3dzZXJfZWZmZWN0IjoiMCIsInNob3dfc2xpZGVzaG93X2xpbmsiOiIxIiwic2xpZGVzaG93X2xpbmtfdGV4dCI6IltTaG93IHNsaWRlc2hvd10iLCJ0ZW1wbGF0ZSI6IiIsInVzZV9saWdodGJveF9lZmZlY3QiOnRydWUsImRpc3BsYXlfbm9faW1hZ2VzX2Vycm9yIjoxLCJkaXNhYmxlX3BhZ2luYXRpb24iOjAsInRodW1ibmFpbF9xdWFsaXR5IjoiMTAwIiwidGh1bWJuYWlsX3dhdGVybWFyayI6MCwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciJ9'),(634,68,'filter','raw'),(635,68,'meta_id','190'),(636,68,'post_id','68'),(637,68,'meta_key','name'),(638,68,'meta_value','photocrati-nextgen_basic_slideshow'),(639,68,'title','NextGEN Basic Slideshow'),(640,68,'preview_image_relpath','/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_gallery/static/slideshow_preview.jpg'),(641,68,'default_source','galleries'),(642,68,'view_order','10010'),(643,68,'name','photocrati-nextgen_basic_slideshow'),(644,68,'installed_at_version','2.1.0'),(645,68,'hidden_from_ui',''),(646,68,'__defaults_set','1'),(647,68,'entity_types','WyJpbWFnZSJd'),(648,68,'id_field','ID'),(649,68,'settings','eyJnYWxsZXJ5X3dpZHRoIjoiMjAwIiwiZ2FsbGVyeV9oZWlnaHQiOiIxNTAiLCJjeWNsZV9lZmZlY3QiOiJmYWRlIiwiY3ljbGVfaW50ZXJ2YWwiOiIxMCIsInNob3dfdGh1bWJuYWlsX2xpbmsiOiIxIiwidGh1bWJuYWlsX2xpbmtfdGV4dCI6IltTaG93IHRodW1ibmFpbHNdIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwidGh1bWJuYWlsX3dpZHRoIjoiNDAwIiwidGh1bWJuYWlsX2hlaWdodCI6IjI1MCIsImVmZmVjdF9jb2RlIjoiY2xhc3M9XCJuZ2ctZmFuY3lib3hcIiByZWw9XCIlR0FMTEVSWV9OQU1FJVwiIiwidGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0='),(650,69,'filter','raw'),(651,69,'meta_id','202'),(652,69,'post_id','69'),(653,69,'meta_key','name'),(654,69,'meta_value','photocrati-nextgen_basic_imagebrowser'),(655,69,'title','NextGEN Basic ImageBrowser'),(656,69,'preview_image_relpath','/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_imagebrowser/static/preview.jpg'),(657,69,'default_source','galleries'),(658,69,'view_order','10020'),(659,69,'name','photocrati-nextgen_basic_imagebrowser'),(660,69,'installed_at_version','2.1.0'),(661,69,'hidden_from_ui',''),(662,69,'__defaults_set','1'),(663,69,'entity_types','WyJpbWFnZSJd'),(664,69,'id_field','ID'),(665,69,'settings','eyJhamF4X3BhZ2luYXRpb24iOiIwIiwidGVtcGxhdGUiOiIiLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0='),(666,70,'filter','raw'),(667,70,'meta_id','215'),(668,70,'post_id','70'),(669,70,'meta_key','name'),(670,70,'meta_value','photocrati-nextgen_basic_singlepic'),(671,70,'title','NextGEN Basic SinglePic'),(672,70,'preview_image_relpath','/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_singlepic/static/preview.gif'),(673,70,'default_source','galleries'),(674,70,'view_order','10060'),(675,70,'hidden_from_ui','1'),(676,70,'name','photocrati-nextgen_basic_singlepic'),(677,70,'installed_at_version','2.1.0'),(678,70,'__defaults_set','1'),(679,70,'entity_types','WyJpbWFnZSJd'),(680,70,'id_field','ID'),(681,70,'settings','eyJ3aWR0aCI6IiIsImhlaWdodCI6IiIsImxpbmsiOiIiLCJsaW5rX3RhcmdldCI6Il9ibGFuayIsImZsb2F0IjoiIiwicXVhbGl0eSI6IjEwMCIsImNyb3AiOiIwIiwiZGlzcGxheV93YXRlcm1hcmsiOiIwIiwiZGlzcGxheV9yZWZsZWN0aW9uIjoiMCIsInRlbXBsYXRlIjoiIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwibW9kZSI6IiIsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifQ=='),(682,71,'filter','raw'),(683,71,'meta_id','226'),(684,71,'post_id','71'),(685,71,'meta_key','name'),(686,71,'meta_value','photocrati-nextgen_basic_tagcloud'),(687,71,'title','NextGEN Basic TagCloud'),(688,71,'preview_image_relpath','/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_tagcloud/static/preview.gif'),(689,71,'default_source','tags'),(690,71,'view_order','10100'),(691,71,'name','photocrati-nextgen_basic_tagcloud'),(692,71,'installed_at_version','2.1.0'),(693,71,'hidden_from_ui',''),(694,71,'__defaults_set','1'),(695,71,'entity_types','WyJpbWFnZSJd'),(696,71,'id_field','ID'),(697,71,'settings','eyJudW1iZXIiOiI0NSIsImRpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciJ9'),(698,72,'filter','raw'),(699,72,'meta_id','238'),(700,72,'post_id','72'),(701,72,'meta_key','name'),(702,72,'meta_value','photocrati-nextgen_basic_compact_album'),(703,72,'title','NextGEN Basic Compact Album'),(704,72,'preview_image_relpath','/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_album/static/compact_preview.jpg'),(705,72,'default_source','albums'),(706,72,'view_order','10200'),(707,72,'name','photocrati-nextgen_basic_compact_album'),(708,72,'installed_at_version','2.1.0'),(709,72,'hidden_from_ui',''),(710,72,'__defaults_set','1'),(711,72,'entity_types','WyJhbGJ1bSIsImdhbGxlcnkiXQ=='),(712,72,'id_field','ID'),(713,72,'settings','eyJnYWxsZXJ5X2Rpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiZ2FsbGVyaWVzX3Blcl9wYWdlIjoiMCIsImVuYWJsZV9icmVhZGNydW1icyI6IjEiLCJ0ZW1wbGF0ZSI6IiIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6IjAiLCJ0aHVtYm5haWxfd2lkdGgiOiI2MDAiLCJ0aHVtYm5haWxfaGVpZ2h0IjoiNDUwIiwidGh1bWJuYWlsX2Nyb3AiOiIwIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJnYWxsZXJ5X2Rpc3BsYXlfdGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0='),(714,73,'filter','raw'),(715,73,'meta_id','250'),(716,73,'post_id','73'),(717,73,'meta_key','name'),(718,73,'meta_value','photocrati-nextgen_basic_extended_album'),(719,73,'title','NextGEN Basic Extended Album'),(720,73,'preview_image_relpath','/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_album/static/extended_preview.jpg'),(721,73,'default_source','albums'),(722,73,'view_order','10210'),(723,73,'name','photocrati-nextgen_basic_extended_album'),(724,73,'installed_at_version','2.1.0'),(725,73,'hidden_from_ui',''),(726,73,'__defaults_set','1'),(727,73,'entity_types','WyJhbGJ1bSIsImdhbGxlcnkiXQ=='),(728,73,'id_field','ID'),(729,73,'settings','eyJnYWxsZXJ5X2Rpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiZ2FsbGVyaWVzX3Blcl9wYWdlIjoiMCIsImVuYWJsZV9icmVhZGNydW1icyI6IjEiLCJ0ZW1wbGF0ZSI6IiIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6IjAiLCJ0aHVtYm5haWxfd2lkdGgiOiIyNDAiLCJ0aHVtYm5haWxfaGVpZ2h0IjoiMTYwIiwidGh1bWJuYWlsX2Nyb3AiOiIxIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJ0aHVtYm5haWxfcXVhbGl0eSI6MTAwLCJ0aHVtYm5haWxfd2F0ZXJtYXJrIjowLCJnYWxsZXJ5X2Rpc3BsYXlfdGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0='),(733,136,'__defaults_set','1'),(734,136,'filter','raw'),(735,136,'id_field','ID'),(736,137,'__defaults_set','1'),(737,137,'filter','raw'),(738,137,'id_field','ID'),(739,138,'__defaults_set','1'),(740,138,'filter','raw'),(741,138,'id_field','ID'),(751,141,'__defaults_set','1'),(752,141,'filter','raw'),(753,141,'id_field','ID'),(760,143,'__defaults_set','1'),(761,143,'filter','raw'),(762,143,'id_field','ID'),(781,146,'__defaults_set','1'),(782,146,'filter','raw'),(783,146,'id_field','ID'),(790,148,'__defaults_set','1'),(791,148,'filter','raw'),(792,148,'id_field','ID'),(799,150,'__defaults_set','1'),(800,150,'filter','raw'),(801,150,'id_field','ID'),(808,152,'__defaults_set','1'),(809,152,'filter','raw'),(810,152,'id_field','ID'),(817,154,'__defaults_set','1'),(818,154,'filter','raw'),(819,154,'id_field','ID'),(826,156,'__defaults_set','1'),(827,156,'filter','raw'),(828,156,'id_field','ID'),(835,158,'__defaults_set','1'),(836,158,'filter','raw'),(837,158,'id_field','ID'),(844,160,'__defaults_set','1'),(845,160,'filter','raw'),(846,160,'id_field','ID'),(853,162,'__defaults_set','1'),(854,162,'filter','raw'),(855,162,'id_field','ID'),(862,164,'__defaults_set','1'),(863,164,'filter','raw'),(864,164,'id_field','ID'),(871,166,'__defaults_set','1'),(872,166,'filter','raw'),(873,166,'id_field','ID'),(880,168,'__defaults_set','1'),(881,168,'filter','raw'),(882,168,'id_field','ID'),(889,170,'__defaults_set','1'),(890,170,'filter','raw'),(891,170,'id_field','ID'),(899,182,'_wp_attached_file','2015/05/Capture.jpg'),(900,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:347;s:4:\"file\";s:19:\"2015/05/Capture.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Capture-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:\"Capture-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"Capture-125x87.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(901,183,'_wp_attached_file','2015/05/Capture.gif'),(902,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:927;s:6:\"height\";i:644;s:4:\"file\";s:19:\"2015/05/Capture.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(903,184,'_wp_attached_file','2015/05/Presentation-of-Food-Pro-Agro-Bangladesh-Intl.-Expo-2015.pdf'),(904,188,'_wp_attached_file','2015/05/p1-logo.png'),(905,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:58;s:4:\"file\";s:19:\"2015/05/p1-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"p1-logo-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"p1-logo-125x36.png\";s:5:\"width\";i:125;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(906,189,'_wp_attached_file','2015/05/p2-logo.png'),(907,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:62;s:4:\"file\";s:19:\"2015/05/p2-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"p2-logo-150x62.png\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"p2-logo-125x39.png\";s:5:\"width\";i:125;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(908,190,'_wp_attached_file','2015/05/p3-logo.png'),(909,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:45;s:4:\"file\";s:19:\"2015/05/p3-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"p3-logo-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"p3-logo-125x28.png\";s:5:\"width\";i:125;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(910,191,'_wp_attached_file','2015/05/p4-logo.png'),(911,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:52;s:4:\"file\";s:19:\"2015/05/p4-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"p4-logo-150x52.png\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"p4-logo-125x33.png\";s:5:\"width\";i:125;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(912,192,'_wp_attached_file','2015/05/p5-logo.png'),(913,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:46;s:4:\"file\";s:19:\"2015/05/p5-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"p5-logo-150x46.png\";s:5:\"width\";i:150;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"p5-logo-125x29.png\";s:5:\"width\";i:125;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(914,198,'_wp_attached_file','2015/05/sincos.jpg'),(915,198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:50;s:4:\"file\";s:18:\"2015/05/sincos.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"sincos-150x50.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"sincos-125x31.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(916,199,'_wp_attached_file','2015/05/market.jpg'),(917,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:89;s:4:\"file\";s:18:\"2015/05/market.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"market-150x89.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"market-125x56.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(918,200,'_wp_attached_file','2015/05/sullar.jpg'),(919,200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:78;s:4:\"file\";s:18:\"2015/05/sullar.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"sullar-150x78.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"sullar-125x49.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(920,203,'_wp_attached_file','2015/05/Food-Agro.jpg'),(921,203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:599;s:4:\"file\";s:21:\"2015/05/Food-Agro.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Food-Agro-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:\"Food-Agro-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Food-Agro-1024x409.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"Food-Agro-125x50.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:21:\"Food-Agro-615x246.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(922,211,'_wp_attached_file','2015/05/p6-logo.png'),(923,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1705;s:6:\"height\";i:893;s:4:\"file\";s:19:\"2015/05/p6-logo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"p6-logo-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:19:\"p6-logo-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"p6-logo-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"p6-logo-125x65.png\";s:5:\"width\";i:125;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:19:\"p6-logo-615x322.png\";s:5:\"width\";i:615;s:6:\"height\";i:322;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(924,213,'_wp_attached_file','2015/05/p7-logo.png'),(925,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:677;s:4:\"file\";s:19:\"2015/05/p7-logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"p7-logo-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:19:\"p7-logo-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"p7-logo-125x101.png\";s:5:\"width\";i:125;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:19:\"p7-logo-615x496.png\";s:5:\"width\";i:615;s:6:\"height\";i:496;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(926,214,'_wp_attached_file','2015/05/p8-logo.png'),(927,214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:870;s:4:\"file\";s:19:\"2015/05/p8-logo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"p8-logo-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:19:\"p8-logo-300x249.png\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"p8-logo-1024x848.png\";s:5:\"width\";i:1024;s:6:\"height\";i:848;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"p8-logo-125x104.png\";s:5:\"width\";i:125;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:19:\"p8-logo-615x510.png\";s:5:\"width\";i:615;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(928,215,'_wp_attached_file','2015/05/p9-logo.png'),(929,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:338;s:4:\"file\";s:19:\"2015/05/p9-logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"p9-logo-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:19:\"p9-logo-186x300.png\";s:5:\"width\";i:186;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"p9-logo-125x201.png\";s:5:\"width\";i:125;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(930,222,'_wp_attached_file','2015/05/p6-logo.jpg'),(931,222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:110;s:4:\"file\";s:19:\"2015/05/p6-logo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"p6-logo-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"p6-logo-125x65.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(932,225,'_wp_attached_file','2015/05/Chaldal-new.png'),(933,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1204;s:6:\"height\";i:386;s:4:\"file\";s:23:\"2015/05/Chaldal-new.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Chaldal-new-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:\"Chaldal-new-300x96.png\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Chaldal-new-1024x328.png\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Chaldal-new-125x40.png\";s:5:\"width\";i:125;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:23:\"Chaldal-new-615x197.png\";s:5:\"width\";i:615;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(934,228,'_wp_attached_file','2015/05/Food-Agro-Partners.png'),(935,228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3259;s:6:\"height\";i:389;s:4:\"file\";s:30:\"2015/05/Food-Agro-Partners.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Food-Agro-Partners-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:29:\"Food-Agro-Partners-300x36.png\";s:5:\"width\";i:300;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Food-Agro-Partners-1024x122.png\";s:5:\"width\";i:1024;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Food-Agro-Partners-125x15.png\";s:5:\"width\";i:125;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:29:\"Food-Agro-Partners-615x73.png\";s:5:\"width\";i:615;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(936,239,'_wp_attached_file','2015/05/Food-Agro-BBoard-S-50-X-20.jpg'),(937,239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:1200;s:4:\"file\";s:38:\"2015/05/Food-Agro-BBoard-S-50-X-20.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Food-Agro-BBoard-S-50-X-20-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:38:\"Food-Agro-BBoard-S-50-X-20-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Food-Agro-BBoard-S-50-X-20-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Food-Agro-BBoard-S-50-X-20-125x50.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:38:\"Food-Agro-BBoard-S-50-X-20-615x246.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(938,244,'_wp_attached_file','2015/05/Naogaon-trade-logo-01.png'),(939,244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:172;s:4:\"file\";s:33:\"2015/05/Naogaon-trade-logo-01.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Naogaon-trade-logo-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Naogaon-trade-logo-01-125x108.png\";s:5:\"width\";i:125;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(940,248,'_wp_attached_file','2015/05/Logo_Sticker.jpg'),(941,248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:161;s:4:\"file\";s:24:\"2015/05/Logo_Sticker.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo_Sticker-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:\"Logo_Sticker-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Logo_Sticker-125x67.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(942,254,'_wp_attached_file','2015/05/KFK-Logo.jpg'),(943,254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:127;s:4:\"file\";s:20:\"2015/05/KFK-Logo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"KFK-Logo-150x127.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"KFK-Logo-125x79.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:79;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(944,255,'_wp_attached_file','2015/05/Untitled-3.jpg'),(945,255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:361;s:4:\"file\";s:22:\"2015/05/Untitled-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Untitled-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:22:\"Untitled-3-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Untitled-3-125x150.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(946,256,'_wp_attached_file','2015/05/Bellissimo-Final-logo.jpg'),(947,256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:118;s:4:\"file\";s:33:\"2015/05/Bellissimo-Final-logo.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Bellissimo-Final-logo-150x118.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Bellissimo-Final-logo-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Bellissimo-Final-logo-125x49.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(952,260,'__defaults_set','1'),(953,260,'filter','raw'),(954,260,'id_field','ID'),(955,261,'__defaults_set','1'),(956,261,'filter','raw'),(957,261,'id_field','ID'),(967,264,'__defaults_set','1'),(968,264,'filter','raw'),(969,264,'id_field','ID'),(976,266,'__defaults_set','1'),(977,266,'filter','raw'),(978,266,'id_field','ID'),(985,268,'__defaults_set','1'),(986,268,'filter','raw'),(987,268,'id_field','ID'),(994,270,'__defaults_set','1'),(995,270,'filter','raw'),(996,270,'id_field','ID'),(1003,272,'__defaults_set','1'),(1004,272,'filter','raw'),(1005,272,'id_field','ID'),(1012,274,'__defaults_set','1'),(1013,274,'filter','raw'),(1014,274,'id_field','ID'),(1021,276,'__defaults_set','1'),(1022,276,'filter','raw'),(1023,276,'id_field','ID'),(1030,278,'__defaults_set','1'),(1031,278,'filter','raw'),(1032,278,'id_field','ID'),(1039,280,'__defaults_set','1'),(1040,280,'filter','raw'),(1041,280,'id_field','ID'),(1048,282,'__defaults_set','1'),(1049,282,'filter','raw'),(1050,282,'id_field','ID'),(1057,284,'__defaults_set','1'),(1058,284,'filter','raw'),(1059,284,'id_field','ID'),(1066,286,'__defaults_set','1'),(1067,286,'filter','raw'),(1068,286,'id_field','ID'),(1075,288,'__defaults_set','1'),(1076,288,'filter','raw'),(1077,288,'id_field','ID'),(1084,290,'__defaults_set','1'),(1085,290,'filter','raw'),(1086,290,'id_field','ID'),(1093,292,'__defaults_set','1'),(1094,292,'filter','raw'),(1095,292,'id_field','ID'),(1102,295,'__defaults_set','1'),(1103,295,'filter','raw'),(1104,295,'id_field','ID'),(1207,297,'__defaults_set','1'),(1208,297,'filter','raw'),(1209,297,'id_field','ID'),(1264,299,'__defaults_set','1'),(1265,299,'filter','raw'),(1266,299,'id_field','ID'),(1321,301,'__defaults_set','1'),(1322,301,'filter','raw'),(1323,301,'id_field','ID'),(1330,303,'__defaults_set','1'),(1331,303,'filter','raw'),(1332,303,'id_field','ID'),(1339,305,'__defaults_set','1'),(1340,305,'filter','raw'),(1341,305,'id_field','ID'),(1348,307,'__defaults_set','1'),(1349,307,'filter','raw'),(1350,307,'id_field','ID'),(1357,309,'__defaults_set','1'),(1358,309,'filter','raw'),(1359,309,'id_field','ID'),(1408,311,'__defaults_set','1'),(1409,311,'filter','raw'),(1410,311,'id_field','ID'),(1417,313,'__defaults_set','1'),(1418,313,'filter','raw'),(1419,313,'id_field','ID'),(1426,315,'__defaults_set','1'),(1427,315,'filter','raw'),(1428,315,'id_field','ID'),(1435,317,'__defaults_set','1'),(1436,317,'filter','raw'),(1437,317,'id_field','ID'),(1495,319,'__defaults_set','1'),(1496,319,'filter','raw'),(1497,319,'id_field','ID'),(1504,321,'__defaults_set','1'),(1505,321,'filter','raw'),(1506,321,'id_field','ID'),(1561,323,'__defaults_set','1'),(1562,323,'filter','raw'),(1563,323,'id_field','ID'),(1570,325,'__defaults_set','1'),(1571,325,'filter','raw'),(1572,325,'id_field','ID'),(1579,327,'__defaults_set','1'),(1580,327,'filter','raw'),(1581,327,'id_field','ID'),(1588,329,'__defaults_set','1'),(1589,329,'filter','raw'),(1590,329,'id_field','ID'),(1597,331,'__defaults_set','1'),(1598,331,'filter','raw'),(1599,331,'id_field','ID'),(1606,333,'__defaults_set','1'),(1607,333,'filter','raw'),(1608,333,'id_field','ID'),(1615,335,'__defaults_set','1'),(1616,335,'filter','raw'),(1617,335,'id_field','ID'),(1672,337,'__defaults_set','1'),(1673,337,'filter','raw'),(1674,337,'id_field','ID'),(1681,339,'_wp_attached_file','2015/05/Food-Agro-Partners-02.png'),(1682,339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/Food-Agro-Partners-02.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Food-Agro-Partners-02-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:\"Food-Agro-Partners-02-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Food-Agro-Partners-02-125x56.png\";s:5:\"width\";i:125;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:33:\"Food-Agro-Partners-02-615x273.png\";s:5:\"width\";i:615;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1683,355,'_wp_attached_file','2015/05/Swad-Musthead.png'),(1684,355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:455;s:4:\"file\";s:25:\"2015/05/Swad-Musthead.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Swad-Musthead-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:25:\"Swad-Musthead-300x137.png\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Swad-Musthead-125x57.png\";s:5:\"width\";i:125;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:25:\"Swad-Musthead-615x280.png\";s:5:\"width\";i:615;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1685,363,'__defaults_set','1'),(1686,363,'filter','raw'),(1687,363,'id_field','ID'),(1694,365,'__defaults_set','1'),(1695,365,'filter','raw'),(1696,365,'id_field','ID'),(1703,367,'__defaults_set','1'),(1704,367,'filter','raw'),(1705,367,'id_field','ID'),(1712,369,'__defaults_set','1'),(1713,369,'filter','raw'),(1714,369,'id_field','ID'),(1721,371,'__defaults_set','1'),(1722,371,'filter','raw'),(1723,371,'id_field','ID'),(1730,373,'__defaults_set','1'),(1731,373,'filter','raw'),(1732,373,'id_field','ID'),(1739,375,'__defaults_set','1'),(1740,375,'filter','raw'),(1741,375,'id_field','ID'),(1748,377,'__defaults_set','1'),(1749,377,'filter','raw'),(1750,377,'id_field','ID'),(1757,379,'__defaults_set','1'),(1758,379,'filter','raw'),(1759,379,'id_field','ID'),(1766,381,'__defaults_set','1'),(1767,381,'filter','raw'),(1768,381,'id_field','ID'),(1775,383,'__defaults_set','1'),(1776,383,'filter','raw'),(1777,383,'id_field','ID'),(1784,385,'__defaults_set','1'),(1785,385,'filter','raw'),(1786,385,'id_field','ID'),(1793,387,'__defaults_set','1'),(1794,387,'filter','raw'),(1795,387,'id_field','ID'),(1802,389,'__defaults_set','1'),(1803,389,'filter','raw'),(1804,389,'id_field','ID'),(1811,391,'__defaults_set','1'),(1812,391,'filter','raw'),(1813,391,'id_field','ID'),(1820,393,'__defaults_set','1'),(1821,393,'filter','raw'),(1822,393,'id_field','ID'),(1829,395,'__defaults_set','1'),(1830,395,'filter','raw'),(1831,395,'id_field','ID'),(1940,440,'_wp_attached_file','2015/05/CEMS-Global-Expo-Form.pdf'),(1941,445,'__defaults_set','1'),(1942,445,'filter','raw'),(1943,445,'id_field','ID'),(1950,456,'_wp_attached_file','2015/05/Food-Agro-Partners-03.png'),(1951,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/Food-Agro-Partners-03.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Food-Agro-Partners-03-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:\"Food-Agro-Partners-03-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Food-Agro-Partners-03-125x56.png\";s:5:\"width\";i:125;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:33:\"Food-Agro-Partners-03-615x273.png\";s:5:\"width\";i:615;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1952,459,'_wp_attached_file','2015/05/Food-Agro-FB.jpg'),(1953,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5170;s:6:\"height\";i:1955;s:4:\"file\";s:24:\"2015/05/Food-Agro-FB.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Food-Agro-FB-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:\"Food-Agro-FB-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Food-Agro-FB-1024x387.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Food-Agro-FB-125x47.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:24:\"Food-Agro-FB-615x233.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1954,476,'_wp_attached_file','2015/05/Food-Agro-Partners-021.png'),(1955,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:399;s:4:\"file\";s:34:\"2015/05/Food-Agro-Partners-021.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Food-Agro-Partners-021-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:34:\"Food-Agro-Partners-021-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Food-Agro-Partners-021-125x68.png\";s:5:\"width\";i:125;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:34:\"Food-Agro-Partners-021-615x336.png\";s:5:\"width\";i:615;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1956,482,'__defaults_set','1'),(1957,482,'filter','raw'),(1958,482,'id_field','ID'),(1965,484,'__defaults_set','1'),(1966,484,'filter','raw'),(1967,484,'id_field','ID'),(1974,486,'__defaults_set','1'),(1975,486,'filter','raw'),(1976,486,'id_field','ID'),(1983,488,'__defaults_set','1'),(1984,488,'filter','raw'),(1985,488,'id_field','ID'),(1992,490,'_edit_last','1'),(1993,490,'_edit_lock','1458662040:1'),(1994,490,'_wp_page_template','default'),(1995,496,'__defaults_set','1'),(1996,496,'filter','raw'),(1997,496,'id_field','ID'),(2004,498,'__defaults_set','1'),(2005,498,'filter','raw'),(2006,498,'id_field','ID'),(2013,500,'__defaults_set','1'),(2014,500,'filter','raw'),(2015,500,'id_field','ID'),(2022,502,'__defaults_set','1'),(2023,502,'filter','raw'),(2024,502,'id_field','ID'),(2031,504,'__defaults_set','1'),(2032,504,'filter','raw'),(2033,504,'id_field','ID'),(2040,506,'_wp_attached_file','2015/05/Food-Agro-FB1.jpg'),(2041,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3102;s:6:\"height\";i:1173;s:4:\"file\";s:25:\"2015/05/Food-Agro-FB1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Food-Agro-FB1-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:\"Food-Agro-FB1-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Food-Agro-FB1-1024x387.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Food-Agro-FB1-125x47.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:25:\"Food-Agro-FB1-615x233.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2042,263,'__defaults_set','1'),(2043,263,'filter','raw'),(2044,263,'id_field','ID'),(2045,483,'__defaults_set','1'),(2046,483,'filter','raw'),(2047,483,'id_field','ID'),(2048,487,'__defaults_set','1'),(2049,487,'filter','raw'),(2050,487,'id_field','ID'),(2051,489,'__defaults_set','1'),(2052,489,'filter','raw'),(2053,489,'id_field','ID'),(2054,505,'__defaults_set','1'),(2055,505,'filter','raw'),(2056,505,'id_field','ID'),(2057,262,'__defaults_set','1'),(2058,262,'filter','raw'),(2059,262,'id_field','ID'),(2060,281,'__defaults_set','1'),(2061,281,'filter','raw'),(2062,281,'id_field','ID'),(2063,300,'__defaults_set','1'),(2064,300,'filter','raw'),(2065,300,'id_field','ID'),(2066,302,'__defaults_set','1'),(2067,302,'filter','raw'),(2068,302,'id_field','ID'),(2069,306,'__defaults_set','1'),(2070,306,'filter','raw'),(2071,306,'id_field','ID'),(2072,310,'__defaults_set','1'),(2073,310,'filter','raw'),(2074,310,'id_field','ID'),(2075,316,'__defaults_set','1'),(2076,316,'filter','raw'),(2077,316,'id_field','ID'),(2078,320,'__defaults_set','1'),(2079,320,'filter','raw'),(2080,320,'id_field','ID'),(2081,322,'__defaults_set','1'),(2082,322,'filter','raw'),(2083,322,'id_field','ID'),(2084,326,'__defaults_set','1'),(2085,326,'filter','raw'),(2086,326,'id_field','ID'),(2087,328,'__defaults_set','1'),(2088,328,'filter','raw'),(2089,328,'id_field','ID'),(2090,330,'__defaults_set','1'),(2091,330,'filter','raw'),(2092,330,'id_field','ID'),(2093,332,'__defaults_set','1'),(2094,332,'filter','raw'),(2095,332,'id_field','ID'),(2096,334,'__defaults_set','1'),(2097,334,'filter','raw'),(2098,334,'id_field','ID'),(2099,336,'__defaults_set','1'),(2100,336,'filter','raw'),(2101,336,'id_field','ID'),(2102,338,'__defaults_set','1'),(2103,338,'filter','raw'),(2104,338,'id_field','ID'),(2105,364,'__defaults_set','1'),(2106,364,'filter','raw'),(2107,364,'id_field','ID'),(2108,366,'__defaults_set','1'),(2109,366,'filter','raw'),(2110,366,'id_field','ID'),(2111,368,'__defaults_set','1'),(2112,368,'filter','raw'),(2113,368,'id_field','ID'),(2114,370,'__defaults_set','1'),(2115,370,'filter','raw'),(2116,370,'id_field','ID'),(2117,372,'__defaults_set','1'),(2118,372,'filter','raw'),(2119,372,'id_field','ID'),(2120,374,'__defaults_set','1'),(2121,374,'filter','raw'),(2122,374,'id_field','ID'),(2123,376,'__defaults_set','1'),(2124,376,'filter','raw'),(2125,376,'id_field','ID'),(2126,378,'__defaults_set','1'),(2127,378,'filter','raw'),(2128,378,'id_field','ID'),(2129,380,'__defaults_set','1'),(2130,380,'filter','raw'),(2131,380,'id_field','ID'),(2132,382,'__defaults_set','1'),(2133,382,'filter','raw'),(2134,382,'id_field','ID'),(2135,384,'__defaults_set','1'),(2136,384,'filter','raw'),(2137,384,'id_field','ID'),(2138,386,'__defaults_set','1'),(2139,386,'filter','raw'),(2140,386,'id_field','ID'),(2141,388,'__defaults_set','1'),(2142,388,'filter','raw'),(2143,388,'id_field','ID'),(2144,390,'__defaults_set','1'),(2145,390,'filter','raw'),(2146,390,'id_field','ID'),(2147,394,'__defaults_set','1'),(2148,394,'filter','raw'),(2149,394,'id_field','ID'),(2150,396,'__defaults_set','1'),(2151,396,'filter','raw'),(2152,396,'id_field','ID'),(2153,446,'__defaults_set','1'),(2154,446,'filter','raw'),(2155,446,'id_field','ID'),(2156,515,'__defaults_set','1'),(2157,515,'filter','raw'),(2158,515,'id_field','ID'),(2162,516,'__defaults_set','1'),(2163,516,'filter','raw'),(2164,516,'id_field','ID'),(2165,517,'__defaults_set','1'),(2166,517,'filter','raw'),(2167,517,'id_field','ID'),(2171,518,'__defaults_set','1'),(2172,518,'filter','raw'),(2173,518,'id_field','ID'),(2174,519,'__defaults_set','1'),(2175,519,'filter','raw'),(2176,519,'id_field','ID'),(2180,520,'__defaults_set','1'),(2181,520,'filter','raw'),(2182,520,'id_field','ID'),(2183,523,'_wp_attached_file','2015/05/associative.jpg'),(2184,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:262;s:4:\"file\";s:23:\"2015/05/associative.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"associative-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:\"associative-300x79.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"associative-125x33.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:33;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:23:\"associative-615x161.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2185,530,'_wp_attached_file','2015/05/Beverage-Partner-Acme.png'),(2186,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:887;s:6:\"height\";i:140;s:4:\"file\";s:33:\"2015/05/Beverage-Partner-Acme.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Beverage-Partner-Acme-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Beverage-Partner-Acme-300x47.png\";s:5:\"width\";i:300;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Beverage-Partner-Acme-125x20.png\";s:5:\"width\";i:125;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:32:\"Beverage-Partner-Acme-615x97.png\";s:5:\"width\";i:615;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2187,539,'__defaults_set','1'),(2188,539,'filter','raw'),(2189,539,'id_field','ID'),(2196,541,'__defaults_set','1'),(2197,541,'filter','raw'),(2198,541,'id_field','ID'),(2202,542,'__defaults_set','1'),(2203,542,'filter','raw'),(2204,542,'id_field','ID'),(2208,142,'__defaults_set','1'),(2209,142,'filter','raw'),(2210,142,'id_field','ID'),(2211,144,'__defaults_set','1'),(2212,144,'filter','raw'),(2213,144,'id_field','ID'),(2214,147,'__defaults_set','1'),(2215,147,'filter','raw'),(2216,147,'id_field','ID'),(2217,151,'__defaults_set','1'),(2218,151,'filter','raw'),(2219,151,'id_field','ID'),(2220,155,'__defaults_set','1'),(2221,155,'filter','raw'),(2222,155,'id_field','ID'),(2223,157,'__defaults_set','1'),(2224,157,'filter','raw'),(2225,157,'id_field','ID'),(2226,159,'__defaults_set','1'),(2227,159,'filter','raw'),(2228,159,'id_field','ID'),(2229,161,'__defaults_set','1'),(2230,161,'filter','raw'),(2231,161,'id_field','ID'),(2232,169,'__defaults_set','1'),(2233,169,'filter','raw'),(2234,169,'id_field','ID'),(2235,171,'__defaults_set','1'),(2236,171,'filter','raw'),(2237,171,'id_field','ID'),(2238,572,'_wp_attached_file','2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf'),(2239,573,'_edit_last','1'),(2240,573,'_edit_lock','1464160238:1'),(2241,573,'_wp_page_template','default'),(2242,575,'_menu_item_type','post_type'),(2243,575,'_menu_item_menu_item_parent','18'),(2244,575,'_menu_item_object_id','573'),(2245,575,'_menu_item_object','page'),(2246,575,'_menu_item_target',''),(2247,575,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2248,575,'_menu_item_xfn',''),(2249,575,'_menu_item_url',''),(2269,576,'__defaults_set','1'),(2270,576,'filter','raw'),(2271,576,'id_field','ID'),(2272,577,'__defaults_set','1'),(2273,577,'filter','raw'),(2274,577,'id_field','ID'),(2284,581,'__defaults_set','1'),(2285,581,'filter','raw'),(2286,581,'id_field','ID'),(2290,582,'__defaults_set','1'),(2291,582,'filter','raw'),(2292,582,'id_field','ID'),(2293,140,'__defaults_set','1'),(2294,140,'filter','raw'),(2295,140,'id_field','ID'),(2296,583,'__defaults_set','1'),(2297,583,'filter','raw'),(2298,583,'id_field','ID'),(2302,584,'__defaults_set','1'),(2303,584,'filter','raw'),(2304,584,'id_field','ID'),(2305,585,'__defaults_set','1'),(2306,585,'filter','raw'),(2307,585,'id_field','ID'),(2311,586,'__defaults_set','1'),(2312,586,'filter','raw'),(2313,586,'id_field','ID'),(2314,587,'__defaults_set','1'),(2315,587,'filter','raw'),(2316,587,'id_field','ID'),(2320,588,'__defaults_set','1'),(2321,588,'filter','raw'),(2322,588,'id_field','ID'),(2323,589,'__defaults_set','1'),(2324,589,'filter','raw'),(2325,589,'id_field','ID'),(2329,590,'__defaults_set','1'),(2330,590,'filter','raw'),(2331,590,'id_field','ID'),(2332,591,'__defaults_set','1'),(2333,591,'filter','raw'),(2334,591,'id_field','ID'),(2338,592,'__defaults_set','1'),(2339,592,'filter','raw'),(2340,592,'id_field','ID'),(2341,593,'__defaults_set','1'),(2342,593,'filter','raw'),(2343,593,'id_field','ID'),(2347,594,'__defaults_set','1'),(2348,594,'filter','raw'),(2349,594,'id_field','ID'),(2350,595,'__defaults_set','1'),(2351,595,'filter','raw'),(2352,595,'id_field','ID'),(2356,596,'__defaults_set','1'),(2357,596,'filter','raw'),(2358,596,'id_field','ID'),(2359,597,'__defaults_set','1'),(2360,597,'filter','raw'),(2361,597,'id_field','ID'),(2365,598,'__defaults_set','1'),(2366,598,'filter','raw'),(2367,598,'id_field','ID'),(2368,599,'__defaults_set','1'),(2369,599,'filter','raw'),(2370,599,'id_field','ID'),(2374,600,'__defaults_set','1'),(2375,600,'filter','raw'),(2376,600,'id_field','ID'),(2377,601,'__defaults_set','1'),(2378,601,'filter','raw'),(2379,601,'id_field','ID'),(2383,602,'__defaults_set','1'),(2384,602,'filter','raw'),(2385,602,'id_field','ID'),(2386,603,'__defaults_set','1'),(2387,603,'filter','raw'),(2388,603,'id_field','ID'),(2392,604,'__defaults_set','1'),(2393,604,'filter','raw'),(2394,604,'id_field','ID'),(2395,605,'__defaults_set','1'),(2396,605,'filter','raw'),(2397,605,'id_field','ID'),(2401,606,'__defaults_set','1'),(2402,606,'filter','raw'),(2403,606,'id_field','ID'),(2404,607,'__defaults_set','1'),(2405,607,'filter','raw'),(2406,607,'id_field','ID'),(2410,608,'__defaults_set','1'),(2411,608,'filter','raw'),(2412,608,'id_field','ID'),(2413,609,'__defaults_set','1'),(2414,609,'filter','raw'),(2415,609,'id_field','ID'),(2419,610,'__defaults_set','1'),(2420,610,'filter','raw'),(2421,610,'id_field','ID'),(2422,621,'_edit_last','1'),(2423,621,'_wp_page_template','default'),(2424,621,'_edit_lock','1468486664:1'),(2425,623,'_wp_attached_file','2015/05/Floor-Plan-button.png'),(2426,623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:75;s:4:\"file\";s:29:\"2015/05/Floor-Plan-button.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Floor-Plan-button-150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Floor-Plan-button-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Floor-Plan-button-125x27.png\";s:5:\"width\";i:125;s:6:\"height\";i:27;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2427,658,'_wp_attached_file','2016/12/AgroChemSriLanka2017.jpg'),(2428,658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1186;s:6:\"height\";i:375;s:4:\"file\";s:32:\"2016/12/AgroChemSriLanka2017.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AgroChemSriLanka2017-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:\"AgroChemSriLanka2017-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"AgroChemSriLanka2017-768x243.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"AgroChemSriLanka2017-1024x324.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"AgroChemSriLanka2017-125x40.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"thumbnail-post-single\";a:4:{s:4:\"file\";s:32:\"AgroChemSriLanka2017-615x194.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:194;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:{}}}'),(2429,662,'_wp_attached_file','2015/05/3rd-agroChem-Logo.jpg'),(2430,662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:76;s:4:\"file\";s:29:\"2015/05/3rd-agroChem-Logo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"3rd-agroChem-Logo-150x76.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"3rd-agroChem-Logo-125x38.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:38;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:{}}}'),(2431,668,'_wp_attached_file','2015/05/4th-Agrochem-2019.png'),(2432,668,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:83;s:4:\"file\";s:29:\"2015/05/4th-Agrochem-2019.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"4th-Agrochem-2019-150x83.png\";s:5:\"width\";i:150;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"4th-Agrochem-2019-125x42.png\";s:5:\"width\";i:125;s:6:\"height\";i:42;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:{}}}'),(2433,671,'_wp_attached_file','2015/05/4th-agro-2019.jpg'),(2434,671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:90;s:4:\"file\";s:25:\"2015/05/4th-agro-2019.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"4th-agro-2019-150x90.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"4th-agro-2019-125x70.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:70;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:{}}}'); /*!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 COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=673 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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 (2,1,'2015-05-26 08:46:14','2015-05-26 08:46:14','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 blog. I live in Los Angeles, have a great dog named Jack, and I like piñ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://cems-foodagro.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2015-05-26 08:46:14','2015-05-26 08:46:14','',0,'http://cems-foodagro.com/?page_id=2',0,'page','',0),(5,1,'2015-05-26 09:17:02','2015-05-26 09:17:02','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2015/05/4th-agro-2019.jpg\" name=\"4TH AGRO CHEM BANGLADESH INTERNATIONAL EXPO 2019\" post=\"From 27–30 March 2019\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.[/speaker]\r\n\r\n<!--[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\" SRI LANKA INTERNATIONAL AGRO CHEM EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]-->\r\n\r\n ','Home','','publish','open','open','','home','','','2018-04-16 04:45:33','2018-04-16 04:45:33','',0,'http://cems-foodagro.com/?page_id=5',0,'page','',0),(6,1,'2015-05-26 09:12:24','2015-05-26 09:12:24','','image003','','inherit','open','open','','image003','','','2015-05-26 09:12:24','2015-05-26 09:12:24','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg',0,'attachment','image/jpeg',0),(7,1,'2015-05-26 09:13:11','2015-05-26 09:13:11','','image001','','inherit','open','open','','image001','','','2015-05-26 09:13:11','2015-05-26 09:13:11','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg',0,'attachment','image/jpeg',0),(8,1,'2015-05-26 09:17:02','2015-05-26 09:17:02','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" alt=\"image003\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" alt=\"image001\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<em> <span style=\"color: #333300;\">The biggest 3-days expo For</span></em>\r\n<em> <span style=\"color: #333300;\">International Food, Agriculture Eqpt. Trade Exhibition</span>.</em></h3>\r\n<h3 align=\"right\"><span style=\"color: #339966;\"><em>5~7 November, 2015.</em></span></h3>\r\n<div align=\"right\"><em><span style=\"color: #000000;\">International Convention City Bashundhara, Dhaka. Bangladesh</span>.</em></div>','Home','','inherit','open','open','','5-revision-v1','','','2015-05-26 09:17:02','2015-05-26 09:17:02','',5,'http://cems-foodagro.com/?p=8',0,'revision','',0),(10,1,'2015-05-26 09:18:11','2015-05-26 09:18:11','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" alt=\"image003\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" alt=\"image001\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em> The biggest 3-days expo For</em></span></strong>\r\n<strong><span style=\"color: #000000;\"> <em> International Food, Agriculture Eqpt. Trade Exhibition.</em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>5~7 November, 2015.</em></span></h3>\r\n<div align=\"right\"><strong><em><span style=\"color: #000000;\">International Convention City Bashundhara, Dhaka. Bangladesh</span>.</em></strong></div>','Home','','inherit','open','open','','5-revision-v1','','','2015-05-26 09:18:11','2015-05-26 09:18:11','',5,'http://cems-foodagro.com/?p=10',0,'revision','',0),(11,1,'2015-05-26 09:20:14','2015-05-26 09:20:14',' ','','','publish','open','closed','','11','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=11',1,'nav_menu_item','',0),(12,1,'2015-05-26 09:24:17','2015-05-26 09:24:17','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>ND</sup> INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div style=\"color: #000000;\" align=\"left\">\r\n\r\n<strong><em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b> 26~29 April</b> 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.30 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','publish','open','open','','fact-sheet','','','2016-10-08 06:03:14','2016-10-08 06:03:14','',0,'http://cems-foodagro.com/?page_id=12',0,'page','',0),(13,1,'2015-05-26 09:22:11','2015-05-26 09:22:11','','map22','','inherit','open','open','','map22','','','2015-05-26 09:22:11','2015-05-26 09:22:11','',12,'http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif',0,'attachment','image/gif',0),(14,1,'2015-05-26 09:24:17','2015-05-26 09:24:17','<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\"><img class=\"alignnone size-full wp-image-13\" alt=\"map22\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\" width=\"244\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<table width=\"80%\" border=\"0\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\">Event</p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><strong><b>Food Pro & Agro Bangladesh International Expo 2015</b></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\">Detail</p>\r\n</td>\r\n<td>\r\n<div align=\"left\">\r\n\r\n<b>The biggest 3-days expo For</b>\r\n\r\n<b>International Food, Agriculture Eqpt. Trade Exhibition.</b></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Date</div></td>\r\n<td>\r\n<div align=\"left\"><strong><b>5~7 November, 2015.</b></strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Location</div></td>\r\n<td>\r\n<div align=\"left\">Dhaka, Bangladesh</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Venue</div></td>\r\n<td>\r\n<div align=\"left\">International Convention City Bashundhara.</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Opening Hours</div></td>\r\n<td>\r\n<div align=\"left\">10.30 am to 7.30 pm</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Frequency</div></td>\r\n<td>\r\n<div align=\"left\">Annual</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Open to</div></td>\r\n<td>\r\n<div align=\"left\">Business Visitors</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Organizer</div></td>\r\n<td>\r\n<div align=\"left\">CEMS USA in association with CEMS Bangladesh</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\">Cooperated by</div></td>\r\n<td>\r\n<div align=\"left\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\">Expected number Of Booths</p>\r\n</td>\r\n<td>\r\n<div align=\"left\">200</div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\">Standard Booth Size</p>\r\n</td>\r\n<td>\r\n<div align=\"left\">Minimum 6 sqm</div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-05-26 09:24:17','2015-05-26 09:24:17','',12,'http://cems-foodagro.com/?p=14',0,'revision','',0),(15,1,'2015-05-26 09:24:33','2015-05-26 09:24:33',' ','','','publish','open','closed','','15','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=15',5,'nav_menu_item','',0),(16,1,'2015-05-26 09:25:03','2015-05-26 09:25:03','','Exhibitor','','publish','open','open','','exhibitor','','','2015-05-26 09:25:03','2015-05-26 09:25:03','',0,'http://cems-foodagro.com/?page_id=16',0,'page','',0),(17,1,'2015-05-26 09:25:03','2015-05-26 09:25:03','','Exhibitor','','inherit','open','open','','16-revision-v1','','','2015-05-26 09:25:03','2015-05-26 09:25:03','',16,'http://cems-foodagro.com/?p=17',0,'revision','',0),(18,1,'2015-05-26 09:25:25','2015-05-26 09:25:25',' ','','','publish','open','closed','','18','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=18',4,'nav_menu_item','',0),(19,1,'2015-05-26 09:27:26','2015-05-26 09:27:26','<strong><em>A Perfect Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh.</em></strong>\r\n\r\n<strong> </strong>\r\n\r\n`CEMS Global’ brings to you<strong> ‘2<sup>nd</sup> AGRO CHEM BANGLADESH INTERNATIONAL EXPO - 2017’</strong> scheduled to be held from<strong> 26-29 April 2017</strong>, which will be a glittering showcase for the Agricultural Chemical based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Agricultural Chemical based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.\r\n\r\nChemical fertilizers and pesticides have been gotten acute importance in Bangladesh agriculture. Bangladesh started agrochemical use mainly in 1960s as food security for a vast number of populations. The agriculture sector aims at facilitating an innovative and modern agricultural system which renders increased production capacity through invention of new technology and creation of greater opportunity for agricultural research. Chemical fertilizers play a great role in agricultural growth but greater level of awareness is required in order to refrain from usage harmful chemical matter for maintaining a healthy ecological balance. In order to ensure food security through development of agriculture in Bangladesh, the invention, adoption and dissemination of ‘new technology’ must be ensured with a view to increasing production of diversified crops.\r\n\r\n<strong>‘AGRO CHEM BANGLADESH INTERNATIONAL EXPO -2017’</strong> will be a perfect platform for Manufacturers & Suppliers to showcase their agricultural chemical products/ services Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, business representatives, of course the consumers and other bulk purchasers from global scale.','Highlights','','publish','open','open','','highlights','','','2016-10-08 06:15:25','2016-10-08 06:15:25','',0,'http://cems-foodagro.com/?page_id=19',0,'page','',0),(20,1,'2015-05-26 09:27:26','2015-05-26 09:27:26','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</b></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b> </b>`CEMS Global’ brings to you <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ scheduled to be held from 5~7 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span>\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\"> Keeping this in view, CEMS Global USA is going to launch an exhibition <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Highlights','','inherit','open','open','','19-revision-v1','','','2015-05-26 09:27:26','2015-05-26 09:27:26','',19,'http://cems-foodagro.com/?p=20',0,'revision','',0),(21,1,'2015-05-26 09:27:49','2015-05-26 09:27:49',' ','','','publish','open','closed','','21','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=21',6,'nav_menu_item','',0),(22,1,'2015-05-26 09:29:27','2015-05-26 09:29:27','<strong>‘2ND INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017’</strong> will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Agro Technologist, Scientist, Engineers, Owners from the below industries, Agriculture Department | Agro Producers |Agrochemical Wholesalers & Retailers | Chemical Product | Exporters & Importers | Consultants | Dairy, Poultry & Livestock Farmers | Engineers and Technicians | Entrepreneurs, Farm Contractors | Farmers, Agriculturists and Agronomists | Government Representatives | Investors and Bankers | Mass Agrochemical Product & Technology Users | New Agricultural Product | Technology Applied Organizations | Related Enterprises & Organizations | Transport & Logistic Experts | Universities and Research Institutions | Veterinary Practitioners.','Focus','','publish','open','open','','focus','','','2016-10-08 06:19:16','2016-10-08 06:19:16','',0,'http://cems-foodagro.com/?page_id=22',0,'page','',0),(23,1,'2015-05-26 09:29:27','2015-05-26 09:29:27','<p style=\"text-align: justify;\"><span style=\"color: #000000;\">‘<em><strong>FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015’</strong></em> will be a perfect platform for Area Manager / GM / Operation Manager / Owner / CEO / President / Vice President, F&B Manager / Banqueting Manager, Housekeeping Manager / Public Relation Manager / Marketing Manager / Financial Manager, Architect / Engineer / Interior Design, Ambassador -Trade Attaché, Head Waiters, Executive Chef / Pastry Chef, Hotel / Resort / Furnished Apartment, Restaurant / Café, Bakery / Pastry, Hospital / Healthcare, Supermarket, Architect / Engineer / Contractors / Interior Design / Consultant, Supplier (Hospitality and Foodservice Industry), Financial Company, Association / Tourism Board / Governmental Institutions / Chamber of Commerce / Embassy / Ministry, Events Management / Procurement / Communication / Public Relation Agency / Advertising Agency / Airline, etc.</span></p>','Focus','','inherit','open','open','','22-revision-v1','','','2015-05-26 09:29:27','2015-05-26 09:29:27','',22,'http://cems-foodagro.com/?p=23',0,'revision','',0),(24,1,'2015-05-26 09:29:48','2015-05-26 09:29:48',' ','','','publish','open','closed','','24','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=24',7,'nav_menu_item','',0),(25,1,'2015-05-26 09:31:34','2015-05-26 09:31:34','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #339966;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Official Name</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Geographical Location</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Borders</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Population / Literacy</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Capital</span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Major Cities</span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Places of tourist interest</span></strong><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra safari park, Sitakund echo park at Chittagong, century old historical sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lashgreen tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Exchange Rate</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sectoral share of GDP</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">GDP/rate of growth</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','publish','open','open','','about-bangladesh','','','2015-09-21 11:55:46','2015-09-21 11:55:46','',0,'http://cems-foodagro.com/?page_id=25',0,'page','',0),(26,1,'2015-05-26 09:31:34','2015-05-26 09:31:34','<em><span style=\"color: #000000;\"><strong>BANGLA<span style=\"color: #ff0000;\">DESH</span></strong></span></em>\r\n\r\n<span style=\"color: #000000;\"><a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><span style=\"color: #000000;\"><img class=\"aligncenter\" alt=\"flag\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" width=\"138\" height=\"130\" /></span></a></span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<div align=\"center\">\r\n<table width=\"698\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"351\"><span style=\"color: #000000;\"><b>Population</b>:</span></td>\r\n<td valign=\"top\" width=\"347\"><span style=\"color: #000000;\">138.4 million</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Urban Population</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">26%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Major Ethnic and Linguistic Groups</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Bengali – 98%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Religions</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Muslim – 83%</span>\r\n<span style=\"color: #000000;\"> Hindu – 16%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Population Growth Rate</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">2.06%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Life Expectancy</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">61.3 years</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Infant Mortality</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">66 per 1,000 live births</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Under Five Mortality</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">77 per 1,000 live births</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Maternal Mortality Rate</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">400 per 100,000 live births</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>GNP Per Capita</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">$370</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Percentage of Literate Adult Males</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">54%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Percentage of Literate Adult Females</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">32%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Percentage Population With Access\r\nTo Safe Drinking Water</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">97%</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<span style=\"color: #000000;\"> </span>\r\n<p align=\"center\"><span style=\"color: #000000;\">Economy at A Glance</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Bangladesh has an agrarian economy with 25% of GDP coming from the agriculture, forestry and fisheries sector. Major agricultural products are rice, jute, wheat, potato, pulse, tobacco, tea, sugarcane, and etc. The country is the largest exporter of jute and jute goods in the world. Readymade Garments occupy the topmost position among the exportable items. Tea, frozen shrimps, leather goods, fish and vegetables ceramic-ware flowers and handicrafts are also major exportable commodities.</span></p>\r\n\r\n<table width=\"95%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"><b>GDP at Current Price</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Tk. 3,004.85 billion US$ 51.897 billion</span>\r\n<span style=\"color: #000000;\"> Annual per Capita GDP US$ 389</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>GDP Growth (at FY ’96 Constant Price)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">5.33%</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Industrial Growth (at FY ’96 Constant Price)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">7.3%</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Inflation Rate</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">5.1%</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Investment Rate</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">23.2% of GDP</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>National Savings Rate</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">23.7% of GDP</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Exports (US $)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">US $ 6,548 million</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Imports (US $)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">US $ 8,699 million</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Industries</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Jute, tea, textiles, garments, paper, newsprint, fertilizer, leather and leather goods, sugar, cement, fish processing, pharmaceuticals, chemical industries, etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Exports</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Garments, raw jute, jute manufactures, jute products, tea, leather, leather products, frozen shrimps, other fish products, newsprint, paper, naphtha, furnace oil, urea, ceramic products etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Imports</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Wheat, oil, seeds, crude petroleum, raw cotton, edible oil, petroleum products, fertilizer, staple fibers, yarn, iron & steel, capital goods, etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Trading Partners</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">USA, EU Countries, India, China, Japan, South Korea, Australia, Malaysia, Hong Kong, Taiwan, Indonesia, Thailand, Saudi Arabia, UAE.</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-05-26 09:31:34','2015-05-26 09:31:34','',25,'http://cems-foodagro.com/?p=26',0,'revision','',0),(27,1,'2015-05-26 09:31:49','2015-05-26 09:31:49',' ','','','publish','open','closed','','27','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=27',12,'nav_menu_item','',0),(28,1,'2015-05-26 09:32:53','2015-05-26 09:32:53','<p align=\"justify\"><span style=\"color: #000000;\"><em><strong>About CEMS – The Organizer</strong></em></span></p>\r\n\r\n<div>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em>Since its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 7 countries & organizing over 40 exhibitions per annum on all important sectors of the trade and economy. With its Global HQ in USA, CEMS carries out its activities from CEMS-Global USA based in New York, its offices – CEMS India, CEMS China, CEMS Bangladesh, CEMS Lanka, CEMS-Global Asia-Pacific Singapore, CEMS Indonesia and over 10 Associate offices around the world.</em></span></p>\r\n\r\n</div>','About CEMS','','publish','open','open','','about-cems','','','2015-05-26 09:32:53','2015-05-26 09:32:53','',0,'http://cems-foodagro.com/?page_id=28',0,'page','',0),(29,1,'2015-05-26 09:32:53','2015-05-26 09:32:53','<p align=\"justify\"><span style=\"color: #000000;\"><em><strong>About CEMS – The Organizer</strong></em></span></p>\r\n\r\n<div>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em>Since its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 7 countries & organizing over 40 exhibitions per annum on all important sectors of the trade and economy. With its Global HQ in USA, CEMS carries out its activities from CEMS-Global USA based in New York, its offices – CEMS India, CEMS China, CEMS Bangladesh, CEMS Lanka, CEMS-Global Asia-Pacific Singapore, CEMS Indonesia and over 10 Associate offices around the world.</em></span></p>\r\n\r\n</div>','About CEMS','','inherit','open','open','','28-revision-v1','','','2015-05-26 09:32:53','2015-05-26 09:32:53','',28,'http://cems-foodagro.com/?p=29',0,'revision','',0),(30,1,'2015-05-26 09:33:13','2015-05-26 09:33:13',' ','','','publish','open','closed','','30','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=30',13,'nav_menu_item','',0),(31,1,'2015-05-26 09:34:16','2015-05-26 09:34:16','<strong><em>A Perfect Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh.</em></strong>\r\n\r\n<strong> </strong>\r\n\r\n`CEMS Global’ brings to you<strong> ‘2<sup>nd</sup> AGRO CHEM BANGLADESH INTERNATIONAL EXPO - 2017’</strong> scheduled to be held from<strong> 26-29 April 2017</strong>, which will be a glittering showcase for the Agricultural Chemical based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Agricultural Chemical based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.\r\n\r\n \r\n\r\nChemical fertilizers and pesticides have been gotten acute importance in Bangladesh agriculture. Bangladesh started agrochemical use mainly in 1960s as food security for a vast number of populations. The agriculture sector aims at facilitating an innovative and modern agricultural system which renders increased production capacity through invention of new technology and creation of greater opportunity for agricultural research. Chemical fertilizers play a great role in agricultural growth but greater level of awareness is required in order to refrain from usage harmful chemical matter for maintaining a healthy ecological balance. In order to ensure food security through development of agriculture in Bangladesh, the invention, adoption and dissemination of ‘new technology’ must be ensured with a view to increasing production of diversified crops.\r\n\r\n \r\n\r\n<strong>‘AGRO CHEM BANGLADESH INTERNATIONAL EXPO -2017’</strong> will be a perfect platform for Manufacturers & Suppliers to showcase their agricultural chemical products/ services Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, business representatives, of course the consumers and other bulk purchasers from global scale.','Event Profile','','publish','open','open','','event-profile','','','2016-10-08 06:14:52','2016-10-08 06:14:52','',0,'http://cems-foodagro.com/?page_id=31',0,'page','',0),(32,1,'2015-05-26 09:34:16','2015-05-26 09:34:16','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</b></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b> </b><b></b></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">`CEMS Global’ brings to you <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ scheduled to be held from 5~7 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span>\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\"> Keeping this in view, CEMS Global USA is going to launch an exhibition <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2015-05-26 09:34:16','2015-05-26 09:34:16','',31,'http://cems-foodagro.com/?p=32',0,'revision','',0),(33,1,'2015-05-26 09:34:36','2015-05-26 09:34:36',' ','','','publish','open','closed','','33','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=33',2,'nav_menu_item','',0),(35,1,'2015-05-26 09:36:03','2015-05-26 09:36:03','<span style=\"color: #ff0000;\"><strong>Pls write to us at cems@cemsonline.com</strong></span>','Exhibitor Manual','','publish','open','open','','exhibitor-manual','','','2015-05-27 11:41:53','2015-05-27 11:41:53','',0,'http://cems-foodagro.com/?page_id=35',0,'page','',0),(36,1,'2015-05-26 09:36:03','2015-05-26 09:36:03','<span style=\"color: #000000;\"><strong>Pls write to us at cems@cemsonline.com</strong></span>','Exhibitor Manual','','inherit','open','open','','35-revision-v1','','','2015-05-26 09:36:03','2015-05-26 09:36:03','',35,'http://cems-foodagro.com/?p=36',0,'revision','',0),(37,1,'2015-05-26 09:36:21','2015-05-26 09:36:21',' ','','','publish','open','closed','','37','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=37',11,'nav_menu_item','',0),(38,1,'2015-05-26 09:37:42','2015-05-26 09:37:42','<strong>Agriculture Chemicals:</strong> Chemical Pesticides & Intermediates Ecological Pesticides, Biopesticides, Agriculture Chemical Production & Processing Technologies.\r\n\r\n<strong> </strong>\r\n\r\n<strong>Agricultural Fertilizer:</strong> Nitrogen Fertilizer, Potash Fertilizer, Phosphate Fertilizer, Biological Fertilizer, Compound Fertilizer, New Specialized Fertilizers (Seaweed Fertilizers, Biological Fertilizers, Foliage Fertilizers, Slow Release Fertilizers, Trace Element Fertilizers, Humid Acid Fertilizers)\r\n\r\n \r\n\r\n<strong>Chemical Pesticides:</strong> Products of insecticide, Herbicide, Fungicide, Intermediates, Ecological Chemical Pesticides, Biological Pesticide, Pesticide Production, Pesticide Processing Technology.\r\n\r\n<strong> </strong>\r\n\r\n<strong>Crop Protection & Biotechnology:</strong> Plant Growth Regulators, Transgenic Products, Soil Additives, Nutritional Agents, Turf.\r\n\r\n<strong> </strong>\r\n\r\n<strong>Agrochemical Machinery:</strong> Equipment for Agrochemical Products, Spraying Machine, Agricultural Plastic, Farming Machine, Horticultural Grass Mown, Sprinkler Machine, Irrigating Equipment and the relative packaging.\r\n\r\n \r\n\r\n<strong>Agricultural Plastic:</strong> Shed Film, Farmland Film, Shading Net, Anti-insect Net, Modern Agricultural Covering Stuff, Seed Nursery Container, Plastic Water Saving Irrigating Equipment.','Profile of Exhibits','','publish','open','open','','profile-of-exhibits','','','2016-10-08 06:16:16','2016-10-08 06:16:16','',0,'http://cems-foodagro.com/?page_id=38',0,'page','',0),(39,1,'2015-05-26 09:37:42','2015-05-26 09:37:42','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Food Pro Exhibits: </b>Food & Beverage Featuring / Halal Food / Drink , Juice Processing Equipment / Chilled & Frozen Foods / Food Ingredients: Aromas / Flavors & Fragrances / Food Technology / Herbal & Medicinal Plants Exporters , Importer, Traders / Herbal Foods Products / Bakery, Snaks, Rice, Tea, Coffee, Flour, Sugar, Salt, Sweet Manufacturers / Chain Shop / Fast Food Chains / Food Processing and Packaging / Manufacturers and Distributors of Farm Machinery / Hospitality Services and Retails & Franchise / Organic Agricultural Products / Seafood: Fresh Seafood Products / Display, Retails Equipment / Individuals, Companies, Organizations associated with: Spices & Medicinal Plants / Animal Food & Health / Buffaloo Meat Products & Processing Technology / Government Departments / Inputs for Organic Agriculture / Equipments for Food and Agricultural Sectors / Institutional Catering Management etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Agro Bangladesh Exhibit</b><b>:</b> Agricultural Machinery and Technologies / Agriculture Seed Manufacturers, Importers / Agricultural Products Traders, Wholeseller/ Agro Chemical, Pesticides, Insecticides Manufacturers, Importers/Agricultural Cures / Organic Agriculture Sector / Animal Husbandry / Fisheries / Animal Husbandry Machinery / Animal Care and Veterinarian Services / Animal Breeding Equipments / Poultry and Poultry Equipment / Packaging and Equipments / Agriculture Chemistry Products / Tractors and Combines / Sub-Industry / Water and Irrigation Techniques / Greenhouse / Greenhouse Construction and Equipments / Fertilizers, Seed, Seedling, Sapling and Gardening / Biotechnology/Tissue Culture Technology/ Dairy Poultry & Live Stock/ Post Harvest Handling Equipment/ Soil Testing Equipment / Certification Companies/ Horticulture Processing Technology/ Plasticulture & Aquaculture / Aquaculture Technology / Workshop Tools & Equipments / Digital Temperature Controller & Data Logger / Refrigerated Van & Truck , Body Builders/ Garden Equipments / Ecological Agriculture Measuring and Recording Equipment / Cooling Pads & Heat Extractors/ Transporting / Manual Tools / Energy Sources / Banks & Insurance Services/Related Institutions and Companies / Related Sectoral Publications etc.</span></p>','Profile of Exhibits','','inherit','open','open','','38-revision-v1','','','2015-05-26 09:37:42','2015-05-26 09:37:42','',38,'http://cems-foodagro.com/?p=39',0,'revision','',0),(40,1,'2015-05-26 09:38:05','2015-05-26 09:38:05',' ','','','publish','open','closed','','40','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=40',3,'nav_menu_item','',0),(41,1,'2015-05-26 09:39:10','2015-05-26 09:39:10','<strong>‘2ND INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017’</strong> will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Agro Technologist, Scientist, Engineers, Owners from the below industries, Agriculture Department | Agro Producers |Agrochemical Wholesalers & Retailers | Chemical Product | Exporters & Importers | Consultants | Dairy, Poultry & Livestock Farmers | Engineers and Technicians | Entrepreneurs, Farm Contractors | Farmers, Agriculturists and Agronomists | Government Representatives | Investors and Bankers | Mass Agrochemical Product & Technology Users | New Agricultural Product | Technology Applied Organizations | Related Enterprises & Organizations | Transport & Logistic Experts | Universities and Research Institutions | Veterinary Practitioners.','Profile of Visitors','','publish','open','open','','profile-of-visitors','','','2016-10-08 06:16:50','2016-10-08 06:16:50','',0,'http://cems-foodagro.com/?page_id=41',0,'page','',0),(42,1,'2015-05-26 09:39:10','2015-05-26 09:39:10','<em><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015’</strong> will be a perfect platform for Area Manager / GM / Operation Manager / Owner / CEO / President / Vice President, F&B Manager / Banqueting Manager, Housekeeping Manager / Public Relation Manager / Marketing Manager / Financial Manager, Architect / Engineer / Interior Design, Ambassador -Trade Attaché, Head Waiters, Executive Chef / Pastry Chef, Hotel / Resort / Furnished Apartment, Restaurant / Café, Bakery / Pastry, Hospital / Healthcare, Supermarket, Architect / Engineer / Contractors / Interior Design / Consultant, Supplier (Hospitality and Foodservice Industry), Financial Company, Association / Tourism Board / Governmental Institutions / Chamber of Commerce / Embassy / Ministry, Events Management / Procurement / Communication / Public Relation Agency / Advertising Agency / Airline, etc.</span></em>','Profile of Visitors','','inherit','open','open','','41-revision-v1','','','2015-05-26 09:39:10','2015-05-26 09:39:10','',41,'http://cems-foodagro.com/?p=42',0,'revision','',0),(43,1,'2015-05-26 09:39:30','2015-05-26 09:39:30',' ','','','publish','open','closed','','43','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=43',8,'nav_menu_item','',0),(44,1,'2015-05-26 09:42:17','2015-05-26 09:42:17','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n\r\n<strong>Feel free to ask any query if you have</strong>\r\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-cems-foodagro.com.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div></div>\r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div>Tel: 86-10-82842588</div>\r\n<div>Fax: 86-10-84832956</div>\r\n<div>Cell: 86 13811367205</div>\r\n<div>E-mail: <span lang=\"EN-US\"><a href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></div>\r\n<div>Web: <a href=\"http://www.cemschina.cn\" > www.cemschina.cn </a></div>\r\n<div></div>\r\n</div>\r\n<div id=\"post-99\">\r\n\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','publish','open','open','','contact-us','','','2016-10-08 06:38:23','2016-10-08 06:38:23','',0,'http://cems-foodagro.com/?page_id=44',0,'page','',0),(45,1,'2015-05-26 09:42:17','2015-05-26 09:42:17','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img alt=\"CEMS GLOBAL CONTACT\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<strong> </strong>\r\n<span style=\"color: #ff0000;\"><strong>Global HQ</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-usa.jpg\"><img alt=\"cems usa\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-usa.jpg\" width=\"100\" height=\"35\" /></a>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\"> 57 W. 57th Street, 4th Floor,</span>\r\n<span style=\"color: #000000;\"> New York, NY 10019</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +1 646 416 7902</span>\r\n<span style=\"color: #000000;\"> Fax: +1 646 365 8625</span>\r\n<span style=\"color: #000000;\"> Mail : contact@cems-motorshow.com , cems@cemsonline.com</span>\r\n<span style=\"color: #000000;\"> Web : www.cems-global.com</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Asia-Pacific</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-sml.jpg\"><img alt=\"CEMS GLOBAL sml\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-sml.jpg\" width=\"50\" height=\"71\" /></a>\r\n<span style=\"color: #000000;\">CEMS-Global Asia Pacific Pte. Ltd.</span>\r\n<span style=\"color: #000000;\"> 8 Temasek Boulevard, # 42-00 Suntec Tower Three, Singapore 038988</span>\r\n\r\n<span style=\"color: #000000;\">Tel : + 65 – 6829 – 2144</span>\r\n<span style=\"color: #000000;\"> Fax : + 65 – 6829 – 2145</span>\r\n<span style=\"color: #000000;\"> Mail :contact@cems-motorshow.com , cems@cems-asiapacific.com</span>\r\n<span style=\"color: #000000;\"> Web : www.cemsonline.com</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India & South – Asia</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-india.jpg\"><img alt=\"cems india\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-india.jpg\" width=\"100\" height=\"35\" /></a>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services India Pvt. Ltd.</span>\r\n<span style=\"color: #000000;\"> C-398, 1st Floor, Palam Extn. ,Dwarka, Sector 7 , New Delhi 110 075, India</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12</span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 42004717</span>\r\n<span style=\"color: #000000;\"> Mail : contact@cems-motorshow.com , cems@cemsindia.com</span>\r\n<span style=\"color: #000000;\"> Web : www.cemsindia.com</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-china.jpg\"><img alt=\"cems china\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-china.jpg\" width=\"100\" height=\"35\" /></a>\r\n\r\nCEMS CHINA CO.,LTD\r\nRm1008,Dragon Pearl Complex,NO.2123 Pudong Avenue, Shanghai, China\r\nTel : +86-021-58600828\r\nFax : +86-021-58600366\r\nMail : contact@cems-motorshow.com , cems@cemschina.cn\r\nWeb : www.cemschina.cn\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img alt=\"cems bangladesh\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" width=\"100\" height=\"35\" /></a>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : contact@cems-motorshow.com , cems@cemsbangladesh.com</span>\r\n<span style=\"color: #000000;\"> Web : www.cemsbangladesh.com</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img alt=\"CEMS Lanka Logo\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" width=\"100\" height=\"34\" /></a>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span>\r\n<span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 2591 – 753</span>\r\n<span style=\"color: #000000;\"> Mail : contact@cems-motorshow.com , cems@cemslanka.com</span>\r\n<span style=\"color: #000000;\"> Web : www.cemslanka.com</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Indonesia</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-INDO.jpg\"><img alt=\"CEMS INDO\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-INDO.jpg\" width=\"100\" height=\"35\" /></a>\r\n<span style=\"color: #000000;\">PT CEMS INDONESIA</span>\r\n<span style=\"color: #000000;\"> Hall E 2nd Floor Lot#214</span>\r\n<span style=\"color: #000000;\"> Arena Pekan Raya Jakarta ( JIExpo ) – Kemayoran</span>\r\n<span style=\"color: #000000;\"> Jl. Benyamin Sueb</span>\r\n<span style=\"color: #000000;\"> Jakarta Pusat 10620</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +62 21 2664 5313 / 14</span>\r\n<span style=\"color: #000000;\"> Fax : +62 21 6586 8585</span>\r\n<span style=\"color: #000000;\"> Mail :contact@cems-motorshow.com , cems@cemsindonesia.com</span>\r\n<span style=\"color: #000000;\"> Web : www.cemsindonesia.com</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>CEMS-Global Brazil Representative Office</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img alt=\"CEMS GLOBAL CONTACT\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\"> Alameda Santos, 1827, Conj. 112, Sao Paulo SP – 01419-002 ,Brazil</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +55 11 3882 0065,</span>\r\n<span style=\"color: #000000;\"> Mail : cems@cemsbrazil.com</span>\r\n<span style=\"color: #000000;\"> Web : www.cemsbrazil.com</span>\r\n\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon……………</span>.\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-05-26 09:42:17','2015-05-26 09:42:17','',44,'http://cems-foodagro.com/?p=45',0,'revision','',0),(46,1,'2015-05-26 09:42:35','2015-05-26 09:42:35',' ','','','publish','open','closed','','46','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=46',14,'nav_menu_item','',0),(47,1,'2015-05-26 09:43:41','2015-05-26 09:43:41','<h3><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/CEMS-Global-Expo-Form.pdf\" target=\"_blank\">Expo Application Form</a></h3>','Expo Application Form','','publish','open','open','','expo-application-form','','','2015-10-03 06:39:07','2015-10-03 06:39:07','',0,'http://cems-foodagro.com/?page_id=47',0,'page','',0),(48,1,'2015-05-26 09:43:36','2015-05-26 09:43:36','','EXPO-APPLICATION-FORM','','inherit','open','open','','expo-application-form','','','2015-05-26 09:43:36','2015-05-26 09:43:36','',47,'http://cems-foodagro.com/wp-content/uploads/2015/05/EXPO-APPLICATION-FORM.pdf',0,'attachment','application/pdf',0),(49,1,'2015-05-26 09:43:41','2015-05-26 09:43:41','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/EXPO-APPLICATION-FORM.pdf\">EXPO-APPLICATION-FORM</a>','Expo Application Form','','inherit','open','open','','47-revision-v1','','','2015-05-26 09:43:41','2015-05-26 09:43:41','',47,'http://cems-foodagro.com/?p=49',0,'revision','',0),(50,1,'2015-05-26 09:44:07','2015-05-26 09:44:07',' ','','','publish','open','closed','','50','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=50',10,'nav_menu_item','',0),(51,1,'2015-05-26 10:15:04','2015-05-26 10:15:04','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" alt=\"image003\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" alt=\"image001\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em> The biggest 3-days expo For</em></span></strong>\r\n<strong><span style=\"color: #000000;\"> <em> International Food, Agriculture Eqpt. Trade Exhibition.</em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>5~7 November, 2015.</em></span></h3>\r\n<div align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></div>','Home','','inherit','open','open','','5-revision-v1','','','2015-05-26 10:15:04','2015-05-26 10:15:04','',5,'http://cems-foodagro.com/?p=51',0,'revision','',0),(52,1,'2015-05-26 10:15:49','2015-05-26 10:15:49','<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\"><span style=\"color: #000000;\"><img class=\"alignnone size-full wp-image-13\" alt=\"map22\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\" width=\"244\" height=\"202\" /></span></a></span></p>\r\n\r\n<table width=\"80%\" border=\"0\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2015</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\">\r\n\r\n<span style=\"color: #000000;\"><b>The biggest 3-days expo For</b></span>\r\n\r\n<span style=\"color: #000000;\"><b>International Food, Agriculture Eqpt. Trade Exhibition.</b></span>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><b>5~7 November, 2015.</b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 7.30 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Business Visitors</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-05-26 10:15:49','2015-05-26 10:15:49','',12,'http://cems-foodagro.com/?p=52',0,'revision','',0),(53,1,'2015-05-26 10:54:56','2015-05-26 10:54:56','<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015’</strong> will be a perfect platform for Area Manager / GM / Operation Manager / Owner / CEO / President / Vice President, F&B Manager / Banqueting Manager, Housekeeping Manager / Public Relation Manager / Marketing Manager / Financial Manager, Architect / Engineer / Interior Design, Ambassador -Trade Attaché, Head Waiters, Executive Chef / Pastry Chef, Hotel / Resort / Furnished Apartment, Restaurant / Café, Bakery / Pastry, Hospital / Healthcare, Supermarket, Architect / Engineer / Contractors / Interior Design / Consultant, Supplier (Hospitality and Foodservice Industry), Financial Company, Association / Tourism Board / Governmental Institutions / Chamber of Commerce / Embassy / Ministry, Events Management / Procurement / Communication / Public Relation Agency / Advertising Agency / Airline, etc.</span></em></p>','Profile of Visitors','','inherit','open','open','','41-revision-v1','','','2015-05-26 10:54:56','2015-05-26 10:54:56','',41,'http://cems-foodagro.com/?p=53',0,'revision','',0),(54,1,'2015-05-27 08:58:51','2015-05-27 08:58:51','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" alt=\"image003\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" alt=\"image001\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em> The biggest 3-days expo For</em></span></strong>\r\n<strong><span style=\"color: #000000;\"> <em> International Food, Agriculture Eqpt. Trade Exhibition.</em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n<div align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></div>','Home','','inherit','open','open','','5-revision-v1','','','2015-05-27 08:58:51','2015-05-27 08:58:51','',5,'http://cems-foodagro.com/?p=54',0,'revision','',0),(55,1,'2015-05-27 08:59:30','2015-05-27 08:59:30','<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\"><span style=\"color: #000000;\"><img class=\"alignnone size-full wp-image-13\" alt=\"map22\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\" width=\"244\" height=\"202\" /></span></a></span></p>\r\n\r\n<table width=\"80%\" border=\"0\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2015</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\">\r\n\r\n<span style=\"color: #000000;\"><b>The biggest 3-days expo For</b></span>\r\n\r\n<span style=\"color: #000000;\"><b>International Food, Agriculture Eqpt. Trade Exhibition.</b></span>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><b>26~28 November, 2015.</b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 7.30 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Business Visitors</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-05-27 08:59:30','2015-05-27 08:59:30','',12,'http://cems-foodagro.com/?p=55',0,'revision','',0),(56,1,'2015-05-27 11:41:53','2015-05-27 11:41:53','<span style=\"color: #ff0000;\"><strong>Pls write to us at cems@cemsonline.com</strong></span>','Exhibitor Manual','','inherit','open','open','','35-revision-v1','','','2015-05-27 11:41:53','2015-05-27 11:41:53','',35,'http://cems-foodagro.com/?p=56',0,'revision','',0),(57,1,'2015-06-07 10:07:44','2015-06-07 10:07:44','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" alt=\"image003\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" alt=\"image001\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong></strong><strong><span style=\"color: #000000;\"><em><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i><b>. </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n<div align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></div>','Home','','inherit','open','open','','5-revision-v1','','','2015-06-07 10:07:44','2015-06-07 10:07:44','',5,'http://cems-foodagro.com/?p=57',0,'revision','',0),(58,1,'2015-06-07 10:09:30','2015-06-07 10:09:30','<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\"><span style=\"color: #000000;\"><img class=\"alignnone size-full wp-image-13\" alt=\"map22\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\" width=\"244\" height=\"202\" /></span></a></span></p>\r\n\r\n<table width=\"80%\" border=\"0\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2015</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><strong><span style=\"color: #000000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><span style=\"color: #000000;\">.</span> </strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><b>26~28 November, 2015.</b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 7.30 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Business Visitors</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-06-07 10:09:30','2015-06-07 10:09:30','',12,'http://cems-foodagro.com/?p=58',0,'revision','',0),(59,1,'2016-10-08 06:37:05','2016-10-08 06:37:05','<div id=\"post-99\">\n\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\n\n<strong>Feel free to ask any query if you have</strong>\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\n\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\n</span>\n\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\n\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\n\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\n</span>\n\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\n\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\n\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\n</span>\n\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\n\n<a href=\"http://cems-cems-foodagro.com.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\n<div><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\n707, 7th Floor, Suneja Tower-II,\nDistrict Centre, Janakpuri\nNew Delhi-110058</span></em></strong></div>\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\n</span>\n\n<span style=\"color: #000000;\"> </span>\n\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\n\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\n\n \n<div></div>\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\n<div></div>\n</div>\n<div>\n<div></div>\n<div>Tel: 86-10-82842588</div>\n<div>Fax: 86-10-84832956</div>\n<div>Cell: 86 13811367205</div>\n<div>E-mail: <span lang=\"EN-US\"><a href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></div>\n<div>Web: href=\"www.cemschina.cn\" www.cemschina.cn</div>\n<div></div>\n</div>\n<div id=\"post-99\">\n\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\n\n</div>','Contact Us','','inherit','open','open','','44-autosave-v1','','','2016-10-08 06:37:05','2016-10-08 06:37:05','',44,'http://cems-foodagro.com/?p=59',0,'revision','',0),(60,1,'2015-06-09 06:35:57','2015-06-09 06:35:57','','cems china','','inherit','open','open','','cems-china','','','2015-06-09 06:35:57','2015-06-09 06:35:57','',44,'http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg',0,'attachment','image/jpeg',0),(61,1,'2015-06-09 06:36:18','2015-06-09 06:36:18','','cems india','','inherit','open','open','','cems-india','','','2015-06-09 06:36:18','2015-06-09 06:36:18','',44,'http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg',0,'attachment','image/jpeg',0),(62,1,'2015-06-09 06:37:10','2015-06-09 06:37:10','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img alt=\"CEMS GLOBAL CONTACT\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img alt=\"cems bangladesh\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" width=\"100\" height=\"35\" /></a>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> ,<a href=\"mailto:cems@cems-asiapacific.com\">cems@cems-asiapacific.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img alt=\"CEMS Lanka Logo\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" width=\"100\" height=\"34\" /></a>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span>\r\n<span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 2591 – 753</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> , <a href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" alt=\"cems india\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 2410 5201 ~ 4 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 2410 5205</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradexpo.org\">www.asiantradexpo.org</a> , <a href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><b><i><span style=\"text-decoration: underline;\">Corporate Office for China :</span></i></b></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\"><img class=\"alignnone size-full wp-image-60\" alt=\"cems china\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"><b>CEMS China Co., Ltd.</b></span>\r\n<span style=\"color: #000000;\"><b>Shanghai, China</b></span>\r\n\r\n</div>\r\n<span style=\"color: #000000;\">Tel : +86 - 21 - 50492570 ~ 73</span>\r\n<span style=\"color: #000000;\">Fax : +86 - 21 – 50492575</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> , <a href=\"mailto:cems@cemschina.cn\">cems@cemschina.cn</a> </span>\r\n<span style=\"color: #000000;\"> Web : </span><a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemschina.cn\">www.cemschina.cn</a>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon……………</span>.\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-06-09 06:37:10','2015-06-09 06:37:10','',44,'http://cems-foodagro.com/?p=62',0,'revision','',0),(63,1,'2015-06-09 06:39:31','2015-06-09 06:39:31','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img alt=\"CEMS GLOBAL CONTACT\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img alt=\"cems bangladesh\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> ,<a href=\"mailto:cems@cems-asiapacific.com\">cems@cems-asiapacific.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img alt=\"CEMS Lanka Logo\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 2591 – 753</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> , <a href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" alt=\"cems india\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 2410 5201 ~ 4 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 2410 5205</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradexpo.org\">www.asiantradexpo.org</a> , <a href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><b><i><span style=\"text-decoration: underline;\">Corporate Office for China :</span></i></b></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\"><img class=\"alignnone size-full wp-image-60\" alt=\"cems china\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"><b>CEMS China Co., Ltd.</b></span>\r\n<span style=\"color: #000000;\"><b>Shanghai, China</b></span>\r\n\r\n</div>\r\n<span style=\"color: #000000;\">Tel : +86 - 21 - 50492570 ~ 73</span>\r\n<span style=\"color: #000000;\">Fax : +86 - 21 – 50492575</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> , <a href=\"mailto:cems@cemschina.cn\">cems@cemschina.cn</a> </span>\r\n<span style=\"color: #000000;\"> Web : </span><a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemschina.cn\">www.cemschina.cn</a>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon……………</span>.\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-06-09 06:39:31','2015-06-09 06:39:31','',44,'http://cems-foodagro.com/?p=63',0,'revision','',0),(64,1,'2015-06-09 06:41:21','2015-06-09 06:41:21','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img alt=\"CEMS GLOBAL CONTACT\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img alt=\"cems bangladesh\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> ,<a href=\"mailto:cems@cems-asiapacific.com\">cems@cems-asiapacific.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img alt=\"CEMS Lanka Logo\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 2591 – 753</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> , <a href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" alt=\"cems india\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 2410 5201 ~ 4 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 2410 5205</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.asiantradexpo.org\">www.asiantradexpo.org</a> , <a href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><b><i><span style=\"text-decoration: underline;\">Corporate Office for China :</span></i></b></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\"><img class=\"alignnone size-full wp-image-60\" alt=\"cems china\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"><b>CEMS China Co., Ltd.</b></span>\r\n<span style=\"color: #000000;\"><b>Shanghai, China</b></span>\r\n\r\n</div>\r\n<span style=\"color: #000000;\">Tel : +86 - 21 - 50492570 ~ 73</span>\r\n<span style=\"color: #000000;\">Fax : +86 - 21 – 50492575</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@asiantradeexpo.org\">contact@asiantradeexpo.org</a> , <a href=\"mailto:cems@cemschina.cn\">cems@cemschina.cn</a> </span>\r\n<span style=\"color: #000000;\"> Web : </span><a href=\"http://www.asiantradeexpo.org\">www.asiantradeexpo.org</a> , <a href=\"http://www.cemschina.cn\">www.cemschina.cn</a>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon……………</span>.\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-06-09 06:41:21','2015-06-09 06:41:21','',44,'http://cems-foodagro.com/?p=64',0,'revision','',0),(65,1,'2015-06-09 06:53:32','2015-06-09 06:53:32','[nggallery id=4]\r\n\r\n \r\n\r\n ','Gallery','','publish','open','open','','gallery','','','2015-06-17 09:26:39','2015-06-17 09:26:39','',0,'http://cems-foodagro.com/?page_id=65',0,'page','',0),(66,1,'2015-06-09 06:53:32','2015-06-09 06:53:32','','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 06:53:32','2015-06-09 06:53:32','',65,'http://cems-foodagro.com/?p=66',0,'revision','',0),(67,1,'2015-06-09 06:56:20','0000-00-00 00:00:00','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMTc4IiwicG9zdF9pZCI6IjY3IiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwidGl0bGUiOiJOZXh0R0VOIEJhc2ljIFRodW1ibmFpbHMiLCJlbnRpdHlfdHlwZXMiOlsiaW1hZ2UiXSwicHJldmlld19pbWFnZV9yZWxwYXRoIjoiXC9uZXh0Z2VuLWdhbGxlcnlcL3Byb2R1Y3RzXC9waG90b2NyYXRpX25leHRnZW5cL21vZHVsZXNcL25leHRnZW5fYmFzaWNfZ2FsbGVyeVwvc3RhdGljXC90aHVtYl9wcmV2aWV3LmpwZyIsImRlZmF1bHRfc291cmNlIjoiZ2FsbGVyaWVzIiwidmlld19vcmRlciI6MTAwMDAsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfdGh1bWJuYWlscyIsImluc3RhbGxlZF9hdF92ZXJzaW9uIjoiMi4xLjAiLCJpZF9maWVsZCI6IklEIiwic2V0dGluZ3MiOnsib3ZlcnJpZGVfdGh1bWJuYWlsX3NldHRpbmdzIjoiMCIsInRodW1ibmFpbF93aWR0aCI6IjI0MCIsInRodW1ibmFpbF9oZWlnaHQiOiIxNjAiLCJ0aHVtYm5haWxfY3JvcCI6IjEiLCJpbWFnZXNfcGVyX3BhZ2UiOiIyMCIsIm51bWJlcl9vZl9jb2x1bW5zIjoiMCIsImFqYXhfcGFnaW5hdGlvbiI6IjAiLCJzaG93X2FsbF9pbl9saWdodGJveCI6IjAiLCJ1c2VfaW1hZ2Vicm93c2VyX2VmZmVjdCI6IjAiLCJzaG93X3NsaWRlc2hvd19saW5rIjoiMSIsInNsaWRlc2hvd19saW5rX3RleHQiOiJbU2hvdyBzbGlkZXNob3ddIiwidGVtcGxhdGUiOiIiLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJkaXNwbGF5X25vX2ltYWdlc19lcnJvciI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJ0aHVtYm5haWxfcXVhbGl0eSI6IjEwMCIsInRodW1ibmFpbF93YXRlcm1hcmsiOjAsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifSwiaGlkZGVuX2Zyb21fdWkiOmZhbHNlLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=','NextGEN Basic Thumbnails','','draft','open','open','','','','','2015-06-17 09:21:53','2015-06-17 09:21:53','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMTc4IiwicG9zdF9pZCI6IjY3IiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwidGl0bGUiOiJOZXh0R0VOIEJhc2ljIFRodW1ibmFpbHMiLCJlbnRpdHlfdHlwZXMiOlsiaW1hZ2UiXSwicHJldmlld19pbWFnZV9yZWxwYXRoIjoiXC9uZXh0Z2VuLWdhbGxlcnlcL3Byb2R1Y3RzXC9waG90b2NyYXRpX25leHRnZW5cL21vZHVsZXNcL25leHRnZW5fYmFzaWNfZ2FsbGVyeVwvc3RhdGljXC90aHVtYl9wcmV2aWV3LmpwZyIsImRlZmF1bHRfc291cmNlIjoiZ2FsbGVyaWVzIiwidmlld19vcmRlciI6MTAwMDAsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfdGh1bWJuYWlscyIsImluc3RhbGxlZF9hdF92ZXJzaW9uIjoiMi4xLjAiLCJpZF9maWVsZCI6IklEIiwic2V0dGluZ3MiOnsib3ZlcnJpZGVfdGh1bWJuYWlsX3NldHRpbmdzIjoiMCIsInRodW1ibmFpbF93aWR0aCI6IjI0MCIsInRodW1ibmFpbF9oZWlnaHQiOiIxNjAiLCJ0aHVtYm5haWxfY3JvcCI6IjEiLCJpbWFnZXNfcGVyX3BhZ2UiOiIyMCIsIm51bWJlcl9vZl9jb2x1bW5zIjoiMCIsImFqYXhfcGFnaW5hdGlvbiI6IjAiLCJzaG93X2FsbF9pbl9saWdodGJveCI6IjAiLCJ1c2VfaW1hZ2Vicm93c2VyX2VmZmVjdCI6IjAiLCJzaG93X3NsaWRlc2hvd19saW5rIjoiMSIsInNsaWRlc2hvd19saW5rX3RleHQiOiJbU2hvdyBzbGlkZXNob3ddIiwidGVtcGxhdGUiOiIiLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJkaXNwbGF5X25vX2ltYWdlc19lcnJvciI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJ0aHVtYm5haWxfcXVhbGl0eSI6IjEwMCIsInRodW1ibmFpbF93YXRlcm1hcmsiOjAsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifSwiaGlkZGVuX2Zyb21fdWkiOmZhbHNlLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=',0,'http://cems-foodagro.com/?post_type=display_type&p=67',0,'display_type','',0),(68,1,'2015-06-09 06:56:20','0000-00-00 00:00:00','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMTkwIiwicG9zdF9pZCI6IjY4IiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19zbGlkZXNob3ciLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgU2xpZGVzaG93IiwiZW50aXR5X3R5cGVzIjpbImltYWdlIl0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX2dhbGxlcnlcL3N0YXRpY1wvc2xpZGVzaG93X3ByZXZpZXcuanBnIiwiZGVmYXVsdF9zb3VyY2UiOiJnYWxsZXJpZXMiLCJ2aWV3X29yZGVyIjoxMDAxMCwibmFtZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19zbGlkZXNob3ciLCJpbnN0YWxsZWRfYXRfdmVyc2lvbiI6IjIuMS4wIiwiaWRfZmllbGQiOiJJRCIsInNldHRpbmdzIjp7ImdhbGxlcnlfd2lkdGgiOiIyMDAiLCJnYWxsZXJ5X2hlaWdodCI6IjE1MCIsImN5Y2xlX2VmZmVjdCI6ImZhZGUiLCJjeWNsZV9pbnRlcnZhbCI6IjEwIiwic2hvd190aHVtYm5haWxfbGluayI6IjEiLCJ0aHVtYm5haWxfbGlua190ZXh0IjoiW1Nob3cgdGh1bWJuYWlsc10iLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJ0aHVtYm5haWxfd2lkdGgiOiI0MDAiLCJ0aHVtYm5haWxfaGVpZ2h0IjoiMjUwIiwiZWZmZWN0X2NvZGUiOiJjbGFzcz1cIm5nZy1mYW5jeWJveFwiIHJlbD1cIiVHQUxMRVJZX05BTUUlXCIiLCJ0ZW1wbGF0ZSI6IiIsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifSwiaGlkZGVuX2Zyb21fdWkiOmZhbHNlLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=','NextGEN Basic Slideshow','','draft','open','open','','','','','2015-06-17 09:21:53','2015-06-17 09:21:53','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMTkwIiwicG9zdF9pZCI6IjY4IiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19zbGlkZXNob3ciLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgU2xpZGVzaG93IiwiZW50aXR5X3R5cGVzIjpbImltYWdlIl0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX2dhbGxlcnlcL3N0YXRpY1wvc2xpZGVzaG93X3ByZXZpZXcuanBnIiwiZGVmYXVsdF9zb3VyY2UiOiJnYWxsZXJpZXMiLCJ2aWV3X29yZGVyIjoxMDAxMCwibmFtZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19zbGlkZXNob3ciLCJpbnN0YWxsZWRfYXRfdmVyc2lvbiI6IjIuMS4wIiwiaWRfZmllbGQiOiJJRCIsInNldHRpbmdzIjp7ImdhbGxlcnlfd2lkdGgiOiIyMDAiLCJnYWxsZXJ5X2hlaWdodCI6IjE1MCIsImN5Y2xlX2VmZmVjdCI6ImZhZGUiLCJjeWNsZV9pbnRlcnZhbCI6IjEwIiwic2hvd190aHVtYm5haWxfbGluayI6IjEiLCJ0aHVtYm5haWxfbGlua190ZXh0IjoiW1Nob3cgdGh1bWJuYWlsc10iLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJ0aHVtYm5haWxfd2lkdGgiOiI0MDAiLCJ0aHVtYm5haWxfaGVpZ2h0IjoiMjUwIiwiZWZmZWN0X2NvZGUiOiJjbGFzcz1cIm5nZy1mYW5jeWJveFwiIHJlbD1cIiVHQUxMRVJZX05BTUUlXCIiLCJ0ZW1wbGF0ZSI6IiIsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifSwiaGlkZGVuX2Zyb21fdWkiOmZhbHNlLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=',0,'http://cems-foodagro.com/?post_type=display_type&p=68',0,'display_type','',0),(69,1,'2015-06-09 06:56:20','0000-00-00 00:00:00','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjAyIiwicG9zdF9pZCI6IjY5IiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19pbWFnZWJyb3dzZXIiLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgSW1hZ2VCcm93c2VyIiwiZW50aXR5X3R5cGVzIjpbImltYWdlIl0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX2ltYWdlYnJvd3Nlclwvc3RhdGljXC9wcmV2aWV3LmpwZyIsImRlZmF1bHRfc291cmNlIjoiZ2FsbGVyaWVzIiwidmlld19vcmRlciI6MTAwMjAsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfaW1hZ2Vicm93c2VyIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIyLjEuMCIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJhamF4X3BhZ2luYXRpb24iOiIwIiwidGVtcGxhdGUiOiIiLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0sImhpZGRlbl9mcm9tX3VpIjpmYWxzZSwiX19kZWZhdWx0c19zZXQiOnRydWV9','NextGEN Basic ImageBrowser','','draft','open','open','','','','','2015-06-17 09:21:53','2015-06-17 09:21:53','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjAyIiwicG9zdF9pZCI6IjY5IiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19pbWFnZWJyb3dzZXIiLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgSW1hZ2VCcm93c2VyIiwiZW50aXR5X3R5cGVzIjpbImltYWdlIl0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX2ltYWdlYnJvd3Nlclwvc3RhdGljXC9wcmV2aWV3LmpwZyIsImRlZmF1bHRfc291cmNlIjoiZ2FsbGVyaWVzIiwidmlld19vcmRlciI6MTAwMjAsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfaW1hZ2Vicm93c2VyIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIyLjEuMCIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJhamF4X3BhZ2luYXRpb24iOiIwIiwidGVtcGxhdGUiOiIiLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0sImhpZGRlbl9mcm9tX3VpIjpmYWxzZSwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?post_type=display_type&p=69',0,'display_type','',0),(70,1,'2015-06-09 06:56:20','0000-00-00 00:00:00','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjE1IiwicG9zdF9pZCI6IjcwIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19zaW5nbGVwaWMiLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgU2luZ2xlUGljIiwiZW50aXR5X3R5cGVzIjpbImltYWdlIl0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX3NpbmdsZXBpY1wvc3RhdGljXC9wcmV2aWV3LmdpZiIsImRlZmF1bHRfc291cmNlIjoiZ2FsbGVyaWVzIiwidmlld19vcmRlciI6MTAwNjAsImhpZGRlbl9mcm9tX3VpIjp0cnVlLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3NpbmdsZXBpYyIsImluc3RhbGxlZF9hdF92ZXJzaW9uIjoiMi4xLjAiLCJpZF9maWVsZCI6IklEIiwic2V0dGluZ3MiOnsid2lkdGgiOiIiLCJoZWlnaHQiOiIiLCJsaW5rIjoiIiwibGlua190YXJnZXQiOiJfYmxhbmsiLCJmbG9hdCI6IiIsInF1YWxpdHkiOiIxMDAiLCJjcm9wIjoiMCIsImRpc3BsYXlfd2F0ZXJtYXJrIjoiMCIsImRpc3BsYXlfcmVmbGVjdGlvbiI6IjAiLCJ0ZW1wbGF0ZSI6IiIsInVzZV9saWdodGJveF9lZmZlY3QiOnRydWUsIm1vZGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0sIl9fZGVmYXVsdHNfc2V0Ijp0cnVlfQ==','NextGEN Basic SinglePic','','draft','open','open','','','','','2015-06-17 09:21:53','2015-06-17 09:21:53','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjE1IiwicG9zdF9pZCI6IjcwIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19zaW5nbGVwaWMiLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgU2luZ2xlUGljIiwiZW50aXR5X3R5cGVzIjpbImltYWdlIl0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX3NpbmdsZXBpY1wvc3RhdGljXC9wcmV2aWV3LmdpZiIsImRlZmF1bHRfc291cmNlIjoiZ2FsbGVyaWVzIiwidmlld19vcmRlciI6MTAwNjAsImhpZGRlbl9mcm9tX3VpIjp0cnVlLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3NpbmdsZXBpYyIsImluc3RhbGxlZF9hdF92ZXJzaW9uIjoiMi4xLjAiLCJpZF9maWVsZCI6IklEIiwic2V0dGluZ3MiOnsid2lkdGgiOiIiLCJoZWlnaHQiOiIiLCJsaW5rIjoiIiwibGlua190YXJnZXQiOiJfYmxhbmsiLCJmbG9hdCI6IiIsInF1YWxpdHkiOiIxMDAiLCJjcm9wIjoiMCIsImRpc3BsYXlfd2F0ZXJtYXJrIjoiMCIsImRpc3BsYXlfcmVmbGVjdGlvbiI6IjAiLCJ0ZW1wbGF0ZSI6IiIsInVzZV9saWdodGJveF9lZmZlY3QiOnRydWUsIm1vZGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0sIl9fZGVmYXVsdHNfc2V0Ijp0cnVlfQ==',0,'http://cems-foodagro.com/?post_type=display_type&p=70',0,'display_type','',0),(71,1,'2015-06-09 06:56:20','0000-00-00 00:00:00','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjI2IiwicG9zdF9pZCI6IjcxIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190YWdjbG91ZCIsInRpdGxlIjoiTmV4dEdFTiBCYXNpYyBUYWdDbG91ZCIsImVudGl0eV90eXBlcyI6WyJpbWFnZSJdLCJwcmV2aWV3X2ltYWdlX3JlbHBhdGgiOiJcL25leHRnZW4tZ2FsbGVyeVwvcHJvZHVjdHNcL3Bob3RvY3JhdGlfbmV4dGdlblwvbW9kdWxlc1wvbmV4dGdlbl9iYXNpY190YWdjbG91ZFwvc3RhdGljXC9wcmV2aWV3LmdpZiIsImRlZmF1bHRfc291cmNlIjoidGFncyIsInZpZXdfb3JkZXIiOjEwMTAwLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3RhZ2Nsb3VkIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIyLjEuMCIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJudW1iZXIiOiI0NSIsImRpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciJ9LCJoaWRkZW5fZnJvbV91aSI6ZmFsc2UsIl9fZGVmYXVsdHNfc2V0Ijp0cnVlfQ==','NextGEN Basic TagCloud','','draft','open','open','','','','','2015-06-17 09:21:53','2015-06-17 09:21:53','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjI2IiwicG9zdF9pZCI6IjcxIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190YWdjbG91ZCIsInRpdGxlIjoiTmV4dEdFTiBCYXNpYyBUYWdDbG91ZCIsImVudGl0eV90eXBlcyI6WyJpbWFnZSJdLCJwcmV2aWV3X2ltYWdlX3JlbHBhdGgiOiJcL25leHRnZW4tZ2FsbGVyeVwvcHJvZHVjdHNcL3Bob3RvY3JhdGlfbmV4dGdlblwvbW9kdWxlc1wvbmV4dGdlbl9iYXNpY190YWdjbG91ZFwvc3RhdGljXC9wcmV2aWV3LmdpZiIsImRlZmF1bHRfc291cmNlIjoidGFncyIsInZpZXdfb3JkZXIiOjEwMTAwLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3RhZ2Nsb3VkIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIyLjEuMCIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJudW1iZXIiOiI0NSIsImRpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciJ9LCJoaWRkZW5fZnJvbV91aSI6ZmFsc2UsIl9fZGVmYXVsdHNfc2V0Ijp0cnVlfQ==',0,'http://cems-foodagro.com/?post_type=display_type&p=71',0,'display_type','',0),(72,1,'2015-06-09 06:56:20','0000-00-00 00:00:00','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjM4IiwicG9zdF9pZCI6IjcyIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19jb21wYWN0X2FsYnVtIiwidGl0bGUiOiJOZXh0R0VOIEJhc2ljIENvbXBhY3QgQWxidW0iLCJlbnRpdHlfdHlwZXMiOlsiYWxidW0iLCJnYWxsZXJ5Il0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX2FsYnVtXC9zdGF0aWNcL2NvbXBhY3RfcHJldmlldy5qcGciLCJkZWZhdWx0X3NvdXJjZSI6ImFsYnVtcyIsInZpZXdfb3JkZXIiOjEwMjAwLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX2NvbXBhY3RfYWxidW0iLCJpbnN0YWxsZWRfYXRfdmVyc2lvbiI6IjIuMS4wIiwiaWRfZmllbGQiOiJJRCIsInNldHRpbmdzIjp7ImdhbGxlcnlfZGlzcGxheV90eXBlIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3RodW1ibmFpbHMiLCJnYWxsZXJpZXNfcGVyX3BhZ2UiOiIwIiwiZW5hYmxlX2JyZWFkY3J1bWJzIjoiMSIsInRlbXBsYXRlIjoiIiwib3ZlcnJpZGVfdGh1bWJuYWlsX3NldHRpbmdzIjoiMCIsInRodW1ibmFpbF93aWR0aCI6IjYwMCIsInRodW1ibmFpbF9oZWlnaHQiOiI0NTAiLCJ0aHVtYm5haWxfY3JvcCI6IjAiLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJkaXNhYmxlX3BhZ2luYXRpb24iOjAsImdhbGxlcnlfZGlzcGxheV90ZW1wbGF0ZSI6IiIsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifSwiaGlkZGVuX2Zyb21fdWkiOmZhbHNlLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=','NextGEN Basic Compact Album','','draft','open','open','','','','','2015-06-17 09:21:53','2015-06-17 09:21:53','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjM4IiwicG9zdF9pZCI6IjcyIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19jb21wYWN0X2FsYnVtIiwidGl0bGUiOiJOZXh0R0VOIEJhc2ljIENvbXBhY3QgQWxidW0iLCJlbnRpdHlfdHlwZXMiOlsiYWxidW0iLCJnYWxsZXJ5Il0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6IlwvbmV4dGdlbi1nYWxsZXJ5XC9wcm9kdWN0c1wvcGhvdG9jcmF0aV9uZXh0Z2VuXC9tb2R1bGVzXC9uZXh0Z2VuX2Jhc2ljX2FsYnVtXC9zdGF0aWNcL2NvbXBhY3RfcHJldmlldy5qcGciLCJkZWZhdWx0X3NvdXJjZSI6ImFsYnVtcyIsInZpZXdfb3JkZXIiOjEwMjAwLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX2NvbXBhY3RfYWxidW0iLCJpbnN0YWxsZWRfYXRfdmVyc2lvbiI6IjIuMS4wIiwiaWRfZmllbGQiOiJJRCIsInNldHRpbmdzIjp7ImdhbGxlcnlfZGlzcGxheV90eXBlIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3RodW1ibmFpbHMiLCJnYWxsZXJpZXNfcGVyX3BhZ2UiOiIwIiwiZW5hYmxlX2JyZWFkY3J1bWJzIjoiMSIsInRlbXBsYXRlIjoiIiwib3ZlcnJpZGVfdGh1bWJuYWlsX3NldHRpbmdzIjoiMCIsInRodW1ibmFpbF93aWR0aCI6IjYwMCIsInRodW1ibmFpbF9oZWlnaHQiOiI0NTAiLCJ0aHVtYm5haWxfY3JvcCI6IjAiLCJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJkaXNhYmxlX3BhZ2luYXRpb24iOjAsImdhbGxlcnlfZGlzcGxheV90ZW1wbGF0ZSI6IiIsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifSwiaGlkZGVuX2Zyb21fdWkiOmZhbHNlLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=',0,'http://cems-foodagro.com/?post_type=display_type&p=72',0,'display_type','',0),(73,1,'2015-06-09 06:56:20','0000-00-00 00:00:00','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjUwIiwicG9zdF9pZCI6IjczIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19leHRlbmRlZF9hbGJ1bSIsInRpdGxlIjoiTmV4dEdFTiBCYXNpYyBFeHRlbmRlZCBBbGJ1bSIsImVudGl0eV90eXBlcyI6WyJhbGJ1bSIsImdhbGxlcnkiXSwicHJldmlld19pbWFnZV9yZWxwYXRoIjoiXC9uZXh0Z2VuLWdhbGxlcnlcL3Byb2R1Y3RzXC9waG90b2NyYXRpX25leHRnZW5cL21vZHVsZXNcL25leHRnZW5fYmFzaWNfYWxidW1cL3N0YXRpY1wvZXh0ZW5kZWRfcHJldmlldy5qcGciLCJkZWZhdWx0X3NvdXJjZSI6ImFsYnVtcyIsInZpZXdfb3JkZXIiOjEwMjEwLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX2V4dGVuZGVkX2FsYnVtIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIyLjEuMCIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJnYWxsZXJ5X2Rpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiZ2FsbGVyaWVzX3Blcl9wYWdlIjoiMCIsImVuYWJsZV9icmVhZGNydW1icyI6IjEiLCJ0ZW1wbGF0ZSI6IiIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6IjAiLCJ0aHVtYm5haWxfd2lkdGgiOiIyNDAiLCJ0aHVtYm5haWxfaGVpZ2h0IjoiMTYwIiwidGh1bWJuYWlsX2Nyb3AiOiIxIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJ0aHVtYm5haWxfcXVhbGl0eSI6MTAwLCJ0aHVtYm5haWxfd2F0ZXJtYXJrIjowLCJnYWxsZXJ5X2Rpc3BsYXlfdGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0sImhpZGRlbl9mcm9tX3VpIjpmYWxzZSwiX19kZWZhdWx0c19zZXQiOnRydWV9','NextGEN Basic Extended Album','','draft','open','open','','','','','2015-06-17 09:21:53','2015-06-17 09:21:53','eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMjUwIiwicG9zdF9pZCI6IjczIiwibWV0YV9rZXkiOiJuYW1lIiwibWV0YV92YWx1ZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19leHRlbmRlZF9hbGJ1bSIsInRpdGxlIjoiTmV4dEdFTiBCYXNpYyBFeHRlbmRlZCBBbGJ1bSIsImVudGl0eV90eXBlcyI6WyJhbGJ1bSIsImdhbGxlcnkiXSwicHJldmlld19pbWFnZV9yZWxwYXRoIjoiXC9uZXh0Z2VuLWdhbGxlcnlcL3Byb2R1Y3RzXC9waG90b2NyYXRpX25leHRnZW5cL21vZHVsZXNcL25leHRnZW5fYmFzaWNfYWxidW1cL3N0YXRpY1wvZXh0ZW5kZWRfcHJldmlldy5qcGciLCJkZWZhdWx0X3NvdXJjZSI6ImFsYnVtcyIsInZpZXdfb3JkZXIiOjEwMjEwLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX2V4dGVuZGVkX2FsYnVtIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIyLjEuMCIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJnYWxsZXJ5X2Rpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiZ2FsbGVyaWVzX3Blcl9wYWdlIjoiMCIsImVuYWJsZV9icmVhZGNydW1icyI6IjEiLCJ0ZW1wbGF0ZSI6IiIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6IjAiLCJ0aHVtYm5haWxfd2lkdGgiOiIyNDAiLCJ0aHVtYm5haWxfaGVpZ2h0IjoiMTYwIiwidGh1bWJuYWlsX2Nyb3AiOiIxIiwidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJ0aHVtYm5haWxfcXVhbGl0eSI6MTAwLCJ0aHVtYm5haWxfd2F0ZXJtYXJrIjowLCJnYWxsZXJ5X2Rpc3BsYXlfdGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIn0sImhpZGRlbl9mcm9tX3VpIjpmYWxzZSwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?post_type=display_type&p=73',0,'display_type','',0),(74,1,'2015-06-09 07:00:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:00:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=74',0,'ngg_gallery','',0),(75,1,'2015-06-09 07:00:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:00:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=75',0,'ngg_pictures','',0),(76,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=76',0,'ngg_pictures','',0),(77,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=77',0,'ngg_gallery','',0),(78,1,'2015-06-09 07:01:10','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:01:10','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=78',0,'ngg_pictures','',0),(79,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=79',0,'ngg_pictures','',0),(80,1,'2015-06-09 07:01:12','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:01:12','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=80',0,'ngg_pictures','',0),(81,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=81',0,'ngg_pictures','',0),(82,1,'2015-06-09 07:01:12','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:01:12','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=82',0,'ngg_pictures','',0),(83,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=83',0,'ngg_pictures','',0),(84,1,'2015-06-09 07:01:14','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:01:14','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=84',0,'ngg_pictures','',0),(85,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=85',0,'ngg_pictures','',0),(86,1,'2015-06-09 07:01:15','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:01:15','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=86',0,'ngg_pictures','',0),(87,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=87',0,'ngg_pictures','',0),(88,1,'2015-06-09 07:01:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:01:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=88',0,'ngg_pictures','',0),(89,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=89',0,'ngg_pictures','',0),(90,1,'2015-06-09 07:01:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:01:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=90',0,'ngg_pictures','',0),(91,1,'2015-06-09 09:50:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:17','2015-06-09 09:50:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=91',0,'ngg_pictures','',0),(92,1,'2015-06-09 07:02:35','2015-06-09 07:02:35','[nggallery id=1]','Gallery','','inherit','open','open','','65-autosave-v1','','','2015-06-09 07:02:35','2015-06-09 07:02:35','',65,'http://cems-foodagro.com/?p=92',0,'revision','',0),(93,1,'2015-06-09 07:02:41','2015-06-09 07:02:41','[nggallery id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 07:02:41','2015-06-09 07:02:41','',65,'http://cems-foodagro.com/?p=93',0,'revision','',0),(94,1,'2015-06-09 07:03:01','2015-06-09 07:03:01',' ','','','publish','open','closed','','94','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',0,'http://cems-foodagro.com/?p=94',15,'nav_menu_item','',0),(95,1,'2015-06-09 07:04:28','2015-06-09 07:04:28','[slideshow id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 07:04:28','2015-06-09 07:04:28','',65,'http://cems-foodagro.com/?p=95',0,'revision','',0),(96,1,'2015-06-09 07:07:09','2015-06-09 07:07:09','[nggallery id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 07:07:09','2015-06-09 07:07:09','',65,'http://cems-foodagro.com/?p=96',0,'revision','',0),(97,1,'2015-06-09 07:08:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_album','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:08:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?post_type=ngg_album&p=97',0,'ngg_album','',0),(98,1,'2015-06-09 09:48:01','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_album','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:48:01','2015-06-09 09:48:01','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?post_type=ngg_album&p=98',0,'ngg_album','',0),(99,1,'2015-06-09 07:08:45','2015-06-09 07:08:45','[album id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 07:08:45','2015-06-09 07:08:45','',65,'http://cems-foodagro.com/?p=99',0,'revision','',0),(100,1,'2015-06-09 07:17:27','2015-06-09 07:17:27','[slideshow id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 07:17:27','2015-06-09 07:17:27','',65,'http://cems-foodagro.com/?p=100',0,'revision','',0),(101,1,'2015-06-09 07:18:12','2015-06-09 07:18:12','[album id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 07:18:12','2015-06-09 07:18:12','',65,'http://cems-foodagro.com/?p=101',0,'revision','',0),(102,1,'2015-06-09 07:24:03','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:03','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=102',0,'ngg_gallery','',0),(103,1,'2015-06-09 07:24:03','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:03','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=103',0,'ngg_pictures','',0),(104,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=104',0,'ngg_pictures','',0),(105,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=105',0,'ngg_gallery','',0),(106,1,'2015-06-09 07:24:04','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:04','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=106',0,'ngg_pictures','',0),(107,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=107',0,'ngg_pictures','',0),(108,1,'2015-06-09 07:24:05','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:05','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=108',0,'ngg_pictures','',0),(109,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=109',0,'ngg_pictures','',0),(110,1,'2015-06-09 07:24:06','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:06','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=110',0,'ngg_pictures','',0),(111,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=111',0,'ngg_pictures','',0),(112,1,'2015-06-09 07:24:07','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:07','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=112',0,'ngg_pictures','',0),(113,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=113',0,'ngg_pictures','',0),(114,1,'2015-06-09 07:24:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=114',0,'ngg_pictures','',0),(115,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=115',0,'ngg_pictures','',0),(116,1,'2015-06-09 07:24:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-09 07:24:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=116',0,'ngg_pictures','',0),(117,1,'2015-06-09 09:50:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-09 09:50:55','2015-06-09 09:50:55','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=117',0,'ngg_pictures','',0),(118,1,'2015-06-09 07:24:41','2015-06-09 07:24:41','[nggallery id=2]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 07:24:41','2015-06-09 07:24:41','',65,'http://cems-foodagro.com/?p=118',0,'revision','',0),(120,1,'2015-06-09 09:49:09','2015-06-09 09:49:09','[album id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-09 09:49:09','2015-06-09 09:49:09','',65,'http://cems-foodagro.com/?p=120',0,'revision','',0),(121,1,'2015-06-09 10:03:46','2015-06-09 10:03:46','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" alt=\"image003\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" alt=\"image001\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong></strong><strong><span style=\"color: #000000;\"><em><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i><b>. </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>','Home','','inherit','open','open','','5-revision-v1','','','2015-06-09 10:03:46','2015-06-09 10:03:46','',5,'http://cems-foodagro.com/?p=121',0,'revision','',0),(122,1,'2015-06-13 11:23:38','2015-06-13 11:23:38','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</b></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b> </b><b></b></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">`CEMS Global’ brings to you <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ scheduled to be held from 26~28 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span>\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\"> Keeping this in view, CEMS Global USA is going to launch an exhibition <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2015-06-13 11:23:38','2015-06-13 11:23:38','',31,'http://cems-foodagro.com/?p=122',0,'revision','',0),(123,1,'2015-06-13 11:59:34','2015-06-13 11:59:34','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</b></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b> </b>`CEMS Global’ brings to you <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ scheduled to be held from 26~28 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span>\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\"> Keeping this in view, CEMS Global USA is going to launch an exhibition <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Highlights','','inherit','open','open','','19-revision-v1','','','2015-06-13 11:59:34','2015-06-13 11:59:34','',19,'http://cems-foodagro.com/?p=123',0,'revision','',0),(124,1,'2015-06-15 07:39:32','2015-06-15 07:39:32','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img alt=\"CEMS GLOBAL CONTACT\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img alt=\"cems bangladesh\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a href=\"mailto:cems@cems-asiapacific.com\">cems@cems-asiapacific.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img alt=\"CEMS Lanka Logo\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 2591 – 753</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodpro.com</a> , <a href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" alt=\"cems india\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 2410 5201 ~ 4 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 2410 5205</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><b><i><span style=\"text-decoration: underline;\">Corporate Office for China :</span></i></b></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\"><img class=\"alignnone size-full wp-image-60\" alt=\"cems china\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"><b>CEMS China Co., Ltd.</b></span>\r\n<span style=\"color: #000000;\"><b>Shanghai, China</b></span>\r\n\r\n</div>\r\n<span style=\"color: #000000;\">Tel : +86 - 21 - 50492570 ~ 73</span>\r\n<span style=\"color: #000000;\">Fax : +86 - 21 – 50492575</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodpro.com</a> , <a href=\"mailto:cems@cemschina.cn\">cems@cemschina.cn</a> </span>\r\n<span style=\"color: #000000;\"> Web : </span><a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemschina.cn\">www.cemschina.cn</a>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon……………</span>.\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-06-15 07:39:32','2015-06-15 07:39:32','',44,'http://cems-foodagro.com/?p=124',0,'revision','',0),(125,1,'2015-06-15 07:42:23','2015-06-15 07:42:23','<div style=\"text-align: justify;\">\n\n<span style=\"color: #339966;\"><em><b>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</b></em></span>\n<b> </b><b></b>\n`CEMS Global’ brings to you <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ scheduled to be held from 26 - 28 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.\n\nKeeping this in view, CEMS Global USA is going to launch an exhibition <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ showcasing all products/services from the food and agro sector from local and global companies.\n\n<b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.\n\n</div>\n<p style=\"text-align: justify;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</p>','Highlights','','inherit','open','open','','19-autosave-v1','','','2015-06-15 07:42:23','2015-06-15 07:42:23','',19,'http://cems-foodagro.com/?p=125',0,'revision','',0),(126,1,'2015-06-15 07:42:30','2015-06-15 07:42:30','<div style=\"text-align: justify;\">\r\n\r\n<span style=\"color: #339966;\"><em><b>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</b></em></span>\r\n<b> </b><b></b>\r\n<span style=\"color: #000000;\">`CEMS Global’ brings to you <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ scheduled to be held from 26 - 28 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span>\r\n\r\n<span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ showcasing all products/services from the food and agro sector from local and global companies.</span>\r\n\r\n<span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</b>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span>\r\n\r\n</div>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</b>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Highlights','','inherit','open','open','','19-revision-v1','','','2015-06-15 07:42:30','2015-06-15 07:42:30','',19,'http://cems-foodagro.com/?p=126',0,'revision','',0),(127,1,'2015-06-17 08:03:03','2015-06-17 08:03:03','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img alt=\"CEMS GLOBAL CONTACT\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img alt=\"cems bangladesh\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a href=\"mailto:cems@cems-asiapacific.com\">cems@cems-asiapacific.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img alt=\"CEMS Lanka Logo\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 2591 – 753</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" alt=\"cems india\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 2410 5201 ~ 4 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 2410 5205</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><b><i><span style=\"text-decoration: underline;\">Corporate Office for China :</span></i></b></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\"><img class=\"alignnone size-full wp-image-60\" alt=\"cems china\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\" width=\"100\" height=\"35\" /></a>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"><b>CEMS China Co., Ltd.</b></span>\r\n<span style=\"color: #000000;\"><b>Shanghai, China</b></span>\r\n\r\n</div>\r\n<span style=\"color: #000000;\">Tel : +86 - 21 - 50492570 ~ 73</span>\r\n<span style=\"color: #000000;\">Fax : +86 - 21 – 50492575</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a href=\"mailto:cems@cemschina.cn\">cems@cemschina.cn</a> </span>\r\n<span style=\"color: #000000;\"> Web : </span><a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemschina.cn\">www.cemschina.cn</a>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon……………</span>.\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-06-17 08:03:03','2015-06-17 08:03:03','',44,'http://cems-foodagro.com/44-revision-v1/',0,'revision','',0),(130,1,'2015-06-17 09:06:22','2015-06-17 09:06:22','[nggallery id=1]\r\n\r\n[nggallery id=2]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-17 09:06:22','2015-06-17 09:06:22','',65,'http://cems-foodagro.com/65-revision-v1/',0,'revision','',0),(131,1,'2015-06-17 09:07:37','2015-06-17 09:07:37','[nggallery id=1]\r\n\r\n[nggallery id=2]\r\n\r\n[ slideshow id=1 ]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-17 09:07:37','2015-06-17 09:07:37','',65,'http://cems-foodagro.com/65-revision-v1/',0,'revision','',0),(132,1,'2015-06-17 09:08:08','2015-06-17 09:08:08','[nggallery id=1]\r\n\r\n[nggallery id=2]\r\n\r\n[slideshow id=1]','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-17 09:08:08','2015-06-17 09:08:08','',65,'http://cems-foodagro.com/65-revision-v1/',0,'revision','',0),(133,1,'2015-06-17 09:15:07','2015-06-17 09:15:07','[nggallery id=3]\r\n\r\n \r\n\r\n ','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-17 09:15:07','2015-06-17 09:15:07','',65,'http://cems-foodagro.com/65-revision-v1/',0,'revision','',0),(134,1,'2015-06-17 09:19:54','2015-06-17 09:19:54','[ nggallery id=3 ]\r\n\r\n \r\n\r\n ','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-17 09:19:54','2015-06-17 09:19:54','',65,'http://cems-foodagro.com/65-revision-v1/',0,'revision','',0),(135,1,'2015-06-17 09:20:28','2015-06-17 09:20:28','[nggallery id=3]\r\n\r\n \r\n\r\n ','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-17 09:20:28','2015-06-17 09:20:28','',65,'http://cems-foodagro.com/65-revision-v1/',0,'revision','',0),(136,1,'2015-06-17 09:23:02','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2015-06-17 09:23:02','2015-06-17 09:23:02','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?post_type=ngg_pictures&p=136',0,'ngg_pictures','',0),(137,1,'2015-06-17 09:24:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:24:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=137',0,'ngg_gallery','',0),(138,1,'2015-06-17 09:24:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:24:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=138',0,'ngg_pictures','',0),(140,1,'2016-05-25 08:02:43','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:02:43','2016-05-25 08:02:43','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=140',0,'ngg_gallery','',0),(141,1,'2015-06-17 09:24:32','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:24:32','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=141',0,'ngg_pictures','',0),(142,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=142',0,'ngg_pictures','',0),(143,1,'2015-06-17 09:24:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:24:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=143',0,'ngg_pictures','',0),(144,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=144',0,'ngg_pictures','',0),(145,1,'2015-06-17 09:24:51','2015-06-17 09:24:51','[nggallery id=4]\r\n\r\n \r\n\r\n ','Gallery','','inherit','open','open','','65-revision-v1','','','2015-06-17 09:24:51','2015-06-17 09:24:51','',65,'http://cems-foodagro.com/65-revision-v1/',0,'revision','',0),(146,1,'2015-06-17 09:27:47','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:27:47','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=146',0,'ngg_pictures','',0),(147,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=147',0,'ngg_pictures','',0),(148,1,'2015-06-17 09:27:48','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:27:48','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=148',0,'ngg_pictures','',0),(150,1,'2015-06-17 09:27:50','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:27:50','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=150',0,'ngg_pictures','',0),(151,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=151',0,'ngg_pictures','',0),(152,1,'2015-06-17 09:27:50','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:27:50','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=152',0,'ngg_pictures','',0),(154,1,'2015-06-17 09:27:51','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:27:51','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=154',0,'ngg_pictures','',0),(155,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=155',0,'ngg_pictures','',0),(156,1,'2015-06-17 09:27:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:27:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=156',0,'ngg_pictures','',0),(157,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=157',0,'ngg_pictures','',0),(158,1,'2015-06-17 09:27:53','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:27:53','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=158',0,'ngg_pictures','',0),(159,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=159',0,'ngg_pictures','',0),(160,1,'2015-06-17 09:29:44','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:29:44','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=160',0,'ngg_pictures','',0),(161,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=161',0,'ngg_pictures','',0),(162,1,'2015-06-17 09:29:46','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:29:46','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=162',0,'ngg_pictures','',0),(164,1,'2015-06-17 09:33:26','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:33:26','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=164',0,'ngg_pictures','',0),(166,1,'2015-06-17 09:34:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:34:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=166',0,'ngg_pictures','',0),(168,1,'2015-06-17 09:35:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:35:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=168',0,'ngg_pictures','',0),(169,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=169',0,'ngg_pictures','',0),(170,1,'2015-06-17 09:35:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-06-17 09:35:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=170',0,'ngg_pictures','',0),(171,1,'2016-05-25 06:09:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 06:09:35','2016-05-25 06:09:35','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=171',0,'ngg_pictures','',0),(173,1,'2015-06-28 06:02:28','2015-06-28 06:02:28','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO-2015’</strong></em> will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Food Technologist, Owners from the below industries,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Association/Bakeries/Bakery & Confectionery Manufacturers/Catering Management/Chefs/Clubs and Resorts/Common public/Convenience Retailers/Food Catering/Food marts/Food Manufacturers/Food Technologists/Foodservice Equipment/High rank officers from government sector etc/Hotel & Resort Management/Hotel Supplies Dealers/Convenience Retailers Hypermarkets/Decision and policy makers of the industry/Departmental Stores/Departmental Stores Managers/Dieticians/Electronic and print media/Exporter/F & B Importers & Distributors/Fast Food Chains/Fast Food Outlets/Food Beverage services providers/Financial Company/Hypermarkets/Importers, Distributors, Wholesalers and Retailers/Leisure & Entertainment Staff/Manufacturer/Merchants/Nutritionists/Packaging and Distribution Centers/Policy makers/Restaurant Management/Sales and marketing department of the food industry/Grocery and Convenience Stores/Supply Chain Distributors/Airline etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em> </em></span></p>','Profile of Visitors','','inherit','open','open','','41-revision-v1','','','2015-06-28 06:02:28','2015-06-28 06:02:28','',41,'http://cems-foodagro.com/41-revision-v1/',0,'revision','',0),(174,1,'2015-06-28 06:04:15','2015-06-28 06:04:15','<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\"><span style=\"color: #000000;\"><img class=\"alignnone size-full wp-image-13\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></span></a></span></p>\r\n\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2015</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><strong><span style=\"color: #000000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><span style=\"color: #000000;\">.</span> </strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><b>26~28 November, 2015.</b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-06-28 06:04:15','2015-06-28 06:04:15','',12,'http://cems-foodagro.com/12-revision-v1/',0,'revision','',0),(175,1,'2016-05-08 07:01:53','2016-05-08 07:01:53','p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ scheduled to be held from <strong> 6 ~ 9 April 2017</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\n\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\n\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\n\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-autosave-v1','','','2016-05-08 07:01:53','2016-05-08 07:01:53','',31,'http://cems-foodagro.com/31-autosave-v1/',0,'revision','',0),(176,1,'2015-06-28 06:06:26','2015-06-28 06:06:26','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">`CEMS Global’ brings to you <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</strong>’ scheduled to be held from 26 - 28 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2015-06-28 06:06:26','2015-06-28 06:06:26','',31,'http://cems-foodagro.com/31-revision-v1/',0,'revision','',0),(177,1,'2015-06-28 06:07:32','2015-06-28 06:07:32','<p style=\"text-align: justify;\"><span style=\"color: #339966;\"><em><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\">`CEMS Global’ brings to you <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</strong>’ scheduled to be held from 26 - 28 November 2015, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></em>\r\n\r\n<em><span style=\"color: #000000;\"> Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></em></p>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2015</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></em></p>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2015</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></em></p>','Highlights','','inherit','open','open','','19-revision-v1','','','2015-06-28 06:07:32','2015-06-28 06:07:32','',19,'http://cems-foodagro.com/19-revision-v1/',0,'revision','',0),(179,1,'2015-07-07 10:46:18','2015-07-07 10:46:18','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>','Home','','inherit','open','open','','5-revision-v1','','','2015-07-07 10:46:18','2015-07-07 10:46:18','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(182,1,'2015-08-01 06:25:07','2015-08-01 06:25:07','','Capture','','inherit','open','open','','capture','','','2015-08-01 06:25:07','2015-08-01 06:25:07','',16,'http://cems-foodagro.com/wp-content/uploads/2015/05/Capture.jpg',0,'attachment','image/jpeg',0),(183,1,'2015-08-01 06:28:08','2015-08-01 06:28:08','','Capture','','inherit','open','open','','capture-2','','','2015-08-01 06:28:08','2015-08-01 06:28:08','',16,'http://cems-foodagro.com/wp-content/uploads/2015/05/Capture.gif',0,'attachment','image/gif',0),(184,1,'2015-08-01 06:31:48','2015-08-01 06:31:48','','Presentation of Food Pro & Agro Bangladesh Intl. Expo 2015','','inherit','open','open','','presentation-of-food-pro-agro-bangladesh-intl-expo-2015','','','2015-08-01 06:31:48','2015-08-01 06:31:48','',16,'http://cems-foodagro.com/wp-content/uploads/2015/05/Presentation-of-Food-Pro-Agro-Bangladesh-Intl.-Expo-2015.pdf',0,'attachment','application/pdf',0),(185,1,'2015-08-01 07:14:19','2015-08-01 07:14:19','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" height=\"279\" width=\"492\" allowfullscreen=\"\" frameborder=\"0\"></iframe></p>','Home','','inherit','open','open','','5-revision-v1','','','2015-08-01 07:14:19','2015-08-01 07:14:19','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(186,1,'2015-08-09 08:10:10','2015-08-09 08:10:10','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[logos]<a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Logo-TVS.png\"><img class=\"alignnone size-full wp-image-220\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Logo-TVS.png\" alt=\"Logo-TVS\" width=\"150\" height=\"28\" /></a><a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Haojue-logo.jpg\"><img class=\"alignnone size-full wp-image-183\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Haojue-logo.jpg\" alt=\"Haojue-logo\" width=\"150\" height=\"25\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Bajaj_Auto_Logo.jpg\"><img class=\"alignnone size-full wp-image-174\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Bajaj_Auto_Logo.jpg\" alt=\"Bajaj_Auto_Logo\" width=\"150\" height=\"34\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Italjet-logo.jpg\"><img class=\"alignnone size-full wp-image-177\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Italjet-logo.jpg\" alt=\"Italjet-logo\" width=\"100\" height=\"58\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/motrac-logo.jpg\"><img class=\"alignnone size-full wp-image-178\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/motrac-logo.jpg\" alt=\"motrac-logo\" width=\"150\" height=\"41\" /></a><a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/lifan.png\"><img class=\"alignnone size-full wp-image-223\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/lifan.png\" alt=\"lifan\" width=\"101\" height=\"102\" /></a><a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/logo.png\"><img class=\"alignnone size-full wp-image-225\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/logo.png\" alt=\"logo\" width=\"94\" height=\"111\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/SYM-logo.png\"><img class=\"alignnone size-full wp-image-227\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/SYM-logo.png\" alt=\"SYM-logo\" width=\"150\" height=\"58\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-09 08:10:10','2015-08-09 08:10:10','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(187,1,'2015-08-09 08:10:57','2015-08-09 08:10:57','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n\r\n[big_header]Our Participants 2015[/big_header]\r\n[logos]<a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Logo-TVS.png\"><img class=\"alignnone size-full wp-image-220\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Logo-TVS.png\" alt=\"Logo-TVS\" width=\"150\" height=\"28\" /></a><a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Haojue-logo.jpg\"><img class=\"alignnone size-full wp-image-183\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Haojue-logo.jpg\" alt=\"Haojue-logo\" width=\"150\" height=\"25\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Bajaj_Auto_Logo.jpg\"><img class=\"alignnone size-full wp-image-174\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Bajaj_Auto_Logo.jpg\" alt=\"Bajaj_Auto_Logo\" width=\"150\" height=\"34\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Italjet-logo.jpg\"><img class=\"alignnone size-full wp-image-177\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/Italjet-logo.jpg\" alt=\"Italjet-logo\" width=\"100\" height=\"58\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/motrac-logo.jpg\"><img class=\"alignnone size-full wp-image-178\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/motrac-logo.jpg\" alt=\"motrac-logo\" width=\"150\" height=\"41\" /></a><a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/lifan.png\"><img class=\"alignnone size-full wp-image-223\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/lifan.png\" alt=\"lifan\" width=\"101\" height=\"102\" /></a><a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/logo.png\"><img class=\"alignnone size-full wp-image-225\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/logo.png\" alt=\"logo\" width=\"94\" height=\"111\" /></a> <a href=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/SYM-logo.png\"><img class=\"alignnone size-full wp-image-227\" src=\"http://www.cems-bikeshow.com/wp-content/uploads/2014/11/SYM-logo.png\" alt=\"SYM-logo\" width=\"150\" height=\"58\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-09 08:10:57','2015-08-09 08:10:57','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(188,1,'2015-08-09 08:13:51','2015-08-09 08:13:51','','p1-logo','','inherit','open','open','','p1-logo','','','2015-08-09 08:13:51','2015-08-09 08:13:51','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png',0,'attachment','image/png',0),(189,1,'2015-08-09 08:14:20','2015-08-09 08:14:20','','p2-logo','','inherit','open','open','','p2-logo','','','2015-08-09 08:14:20','2015-08-09 08:14:20','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png',0,'attachment','image/png',0),(190,1,'2015-08-09 08:14:40','2015-08-09 08:14:40','','p3-logo','','inherit','open','open','','p3-logo','','','2015-08-09 08:14:40','2015-08-09 08:14:40','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png',0,'attachment','image/png',0),(191,1,'2015-08-09 08:15:07','2015-08-09 08:15:07','','p4-logo','','inherit','open','open','','p4-logo','','','2015-08-09 08:15:07','2015-08-09 08:15:07','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png',0,'attachment','image/png',0),(192,1,'2015-08-09 08:15:18','2015-08-09 08:15:18','','p5-logo','','inherit','open','open','','p5-logo','','','2015-08-09 08:15:18','2015-08-09 08:15:18','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png',0,'attachment','image/png',0),(193,1,'2015-08-09 08:15:33','2015-08-09 08:15:33','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n[logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\"><img class=\"alignnone size-full wp-image-192\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\" alt=\"p5-logo\" width=\"200\" height=\"46\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-09 08:15:33','2015-08-09 08:15:33','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(194,1,'2015-08-09 08:29:46','2015-08-09 08:29:46','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\"><img class=\"alignnone size-full wp-image-192\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\" alt=\"p5-logo\" width=\"200\" height=\"46\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2015-08-09 08:29:46','2015-08-09 08:29:46','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(195,1,'2015-08-09 08:30:27','2015-08-09 08:30:27','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n[logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\"><img class=\"alignnone size-full wp-image-192\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\" alt=\"p5-logo\" width=\"200\" height=\"46\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-09 08:30:27','2015-08-09 08:30:27','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(196,1,'2015-08-09 08:33:22','2015-08-09 08:33:22','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\"><img class=\"alignnone size-full wp-image-192\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p5-logo.png\" alt=\"p5-logo\" width=\"200\" height=\"46\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-09 08:33:22','2015-08-09 08:33:22','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(197,1,'2015-08-09 12:00:52','2015-08-09 12:00:52','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a> [/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-09 12:00:52','2015-08-09 12:00:52','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(198,1,'2015-08-10 05:18:09','2015-08-10 05:18:09','','sincos','','inherit','open','open','','sincos','','','2015-08-10 05:18:09','2015-08-10 05:18:09','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg',0,'attachment','image/jpeg',0),(199,1,'2015-08-10 05:18:33','2015-08-10 05:18:33','','market','','inherit','open','open','','market','','','2015-08-10 05:18:33','2015-08-10 05:18:33','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg',0,'attachment','image/jpeg',0),(200,1,'2015-08-10 05:19:05','2015-08-10 05:19:05','','sullar','','inherit','open','open','','sullar','','','2015-08-10 05:19:05','2015-08-10 05:19:05','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg',0,'attachment','image/jpeg',0),(201,1,'2015-08-10 05:19:29','2015-08-10 05:19:29','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a>\r\n[/logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2015-08-10 05:19:29','2015-08-10 05:19:29','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(202,1,'2015-08-10 05:20:42','2015-08-10 05:20:42','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001.jpg\"><img class=\"size-medium wp-image-7 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image001-300x234.jpg\" alt=\"image001\" width=\"204\" height=\"159\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-10 05:20:42','2015-08-10 05:20:42','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(203,1,'2015-08-11 11:10:11','2015-08-11 11:10:11','','Food-Agro','','inherit','open','open','','food-agro','','','2015-08-11 11:10:11','2015-08-11 11:10:11','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg',0,'attachment','image/jpeg',0),(204,1,'2015-08-11 11:10:56','2015-08-11 11:10:56','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\" wp-image-203 alignright\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"583\" height=\"214\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n<h3 style=\"text-align: right;\"><span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span>\r\n<strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:10:56','2015-08-11 11:10:56','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(205,1,'2015-08-11 11:12:08','2015-08-11 11:12:08','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n<p style=\"text-align: right;\"><strong> <span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span></strong></p>\r\n\r\n<h3 style=\"text-align: right;\"><strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:12:08','2015-08-11 11:12:08','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(206,1,'2015-08-11 11:13:26','2015-08-11 11:13:26','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 \" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\" alt=\"Food-Agro\" width=\"1058\" height=\"298\" /></a>\r\n\r\n \r\n<h3 style=\"text-align: right;\"><strong> <span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span></strong></h3>\r\n<h3 style=\"text-align: right;\"><strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:13:26','2015-08-11 11:13:26','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(207,1,'2015-08-11 11:14:18','2015-08-11 11:14:18','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 \" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\" alt=\"Food-Agro\" width=\"810\" height=\"246\" /></a>\r\n\r\n \r\n \r\n<h3 style=\"text-align: right;\"><strong> <span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span></strong></h3>\r\n<h3 style=\"text-align: right;\"><strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:14:18','2015-08-11 11:14:18','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(208,1,'2015-08-11 11:15:00','2015-08-11 11:15:00','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 \" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\" alt=\"Food-Agro\" width=\"833\" height=\"247\" /></a>\r\n\r\n \r\n<h3 style=\"text-align: right;\"><strong> <span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span></strong></h3>\r\n<h3 style=\"text-align: right;\"><strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:15:00','2015-08-11 11:15:00','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(209,1,'2015-08-11 11:16:32','2015-08-11 11:16:32','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n<h3 style=\"text-align: right;\"><strong> <span style=\"color: #008000;\"><em>Food Pro & Agro Bangladesh International Expo 2015</em></span></strong></h3>\r\n<h3 style=\"text-align: right;\"><strong><span style=\"color: #000000;\"><em><span style=\"color: #008000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><b><span style=\"color: #008000;\">.</span> </b></em></span></strong></h3>\r\n<h3 align=\"right\"><span style=\"color: #008000;\"><em>26~28 November, 2015.</em></span></h3>\r\n \r\n<h3 align=\"right\"><strong><em><span style=\"color: #000000;\">Bangabandhu International Conference Centre, Dhaka – Bangladesh</span>\r\n</em></strong></h3>\r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:16:32','2015-08-11 11:16:32','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(210,1,'2015-08-11 11:17:29','2015-08-11 11:17:29','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:17:29','2015-08-11 11:17:29','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(211,1,'2015-08-11 11:19:11','2015-08-11 11:19:11','','p6-logo','','inherit','open','open','','p6-logo','','','2015-08-11 11:19:11','2015-08-11 11:19:11','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png',0,'attachment','image/png',0),(212,1,'2015-08-11 11:19:15','2015-08-11 11:19:15','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png\"><img src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo-300x157.png\" alt=\"p6-logo\" width=\"300\" height=\"157\" class=\"alignnone size-medium wp-image-211\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:19:15','2015-08-11 11:19:15','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(213,1,'2015-08-11 11:20:07','2015-08-11 11:20:07','','p7-logo','','inherit','open','open','','p7-logo','','','2015-08-11 11:20:07','2015-08-11 11:20:07','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png',0,'attachment','image/png',0),(214,1,'2015-08-11 11:20:22','2015-08-11 11:20:22','','p8-logo','','inherit','open','open','','p8-logo','','','2015-08-11 11:20:22','2015-08-11 11:20:22','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png',0,'attachment','image/png',0),(215,1,'2015-08-11 11:20:32','2015-08-11 11:20:32','','p9-logo','','inherit','open','open','','p9-logo','','','2015-08-11 11:20:32','2015-08-11 11:20:32','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png',0,'attachment','image/png',0),(216,1,'2015-08-11 11:20:37','2015-08-11 11:20:37','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png\"><img src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo-300x157.png\" alt=\"p6-logo\" width=\"300\" height=\"157\" class=\"alignnone size-medium wp-image-211\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"300\" height=\"242\" class=\"alignnone size-medium wp-image-213\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"300\" height=\"249\" class=\"alignnone size-medium wp-image-214\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"186\" height=\"300\" class=\"alignnone size-medium wp-image-215\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:20:37','2015-08-11 11:20:37','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(217,1,'2015-08-11 11:21:45','2015-08-11 11:21:45','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png\"><img class=\"alignnone wp-image-211\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo-300x157.png\" alt=\"p6-logo\" width=\"269\" height=\"124\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"269\" height=\"202\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"287\" height=\"208\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"168\" height=\"225\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:21:45','2015-08-11 11:21:45','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(218,1,'2015-08-11 11:22:11','2015-08-11 11:22:11','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png\"><img class=\"alignnone wp-image-211\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo-300x157.png\" alt=\"p6-logo\" width=\"269\" height=\"124\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"233\" height=\"175\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"287\" height=\"208\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"168\" height=\"225\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:22:11','2015-08-11 11:22:11','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(219,1,'2015-08-11 11:23:26','2015-08-11 11:23:26','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n\r\n \r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n \r\n<p style=\"text-align: right;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png\"><img class=\"alignnone wp-image-211\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo-300x157.png\" alt=\"p6-logo\" width=\"269\" height=\"124\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"233\" height=\"175\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"287\" height=\"208\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"168\" height=\"225\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:23:26','2015-08-11 11:23:26','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(220,1,'2015-08-11 11:24:26','2015-08-11 11:24:26','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n\r\n \r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png\"><img class=\"alignnone wp-image-211\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo-300x157.png\" alt=\"p6-logo\" width=\"269\" height=\"124\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"233\" height=\"175\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"287\" height=\"208\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"168\" height=\"225\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:24:26','2015-08-11 11:24:26','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(221,1,'2015-08-11 11:26:07','2015-08-11 11:26:07','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.png\"><img class=\"alignnone wp-image-211\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo-300x157.png\" alt=\"p6-logo\" width=\"219\" height=\"81\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:26:07','2015-08-11 11:26:07','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(222,1,'2015-08-11 11:27:40','2015-08-11 11:27:40','','p6-logo','','inherit','open','open','','p6-logo-2','','','2015-08-11 11:27:40','2015-08-11 11:27:40','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg',0,'attachment','image/jpeg',0),(223,1,'2015-08-11 11:27:48','2015-08-11 11:27:48','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-11 11:27:48','2015-08-11 11:27:48','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(225,1,'2015-08-16 08:02:42','2015-08-16 08:02:42','','Chaldal-new','','inherit','open','open','','chaldal-new','','','2015-08-16 08:02:42','2015-08-16 08:02:42','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Chaldal-new.png',0,'attachment','image/png',0),(226,1,'2015-08-16 08:03:02','2015-08-16 08:03:02','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n<p style=\"text-align: left;\"><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Chaldal-new.png\"><img class=\"alignnone wp-image-225\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Chaldal-new-300x96.png\" alt=\"Chaldal-new\" width=\"388\" height=\"103\" /></a></p>','Home','','inherit','open','open','','5-revision-v1','','','2015-08-16 08:03:02','2015-08-16 08:03:02','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(227,1,'2015-08-16 08:03:30','2015-08-16 08:03:30','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n<p style=\"text-align: left;\"><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Chaldal-new.png\"><img class=\" wp-image-225 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Chaldal-new-300x96.png\" alt=\"Chaldal-new\" width=\"388\" height=\"103\" /></a></p>','Home','','inherit','open','open','','5-revision-v1','','','2015-08-16 08:03:30','2015-08-16 08:03:30','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(228,1,'2015-08-17 07:25:11','2015-08-17 07:25:11','','Food & Agro- Partners','','inherit','open','open','','food-agro-partners','','','2015-08-17 07:25:11','2015-08-17 07:25:11','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-Partners.png',0,'attachment','image/png',0),(229,1,'2015-08-17 07:26:59','2015-08-17 07:26:59','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-Partners.png\"><img class=\" wp-image-228 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-Partners-1024x122.png\" alt=\"Food & Agro- Partners\" width=\"845\" height=\"103\" /></a></p>','Home','','inherit','open','open','','5-revision-v1','','','2015-08-17 07:26:59','2015-08-17 07:26:59','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(230,1,'2015-08-23 05:07:16','2015-08-23 05:07:16','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n<p class=\"placemenu\">\r\n<ul>\r\n<li>\r\n<a href=\"#\"></a>\r\n</li>\r\n<li>\r\n<a href=\"#\"></a>\r\n</li>\r\n<li>\r\n<a href=\"#\"></a>\r\n</li>\r\n<li>\r\n<a href=\"#\"></a>\r\n</li>\r\n<li>\r\n<a href=\"#\"></a>\r\n</li>\r\n</ul>\r\n</P>\r\n','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 05:07:16','2015-08-23 05:07:16','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(231,1,'2015-08-23 05:08:37','2015-08-23 05:08:37','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n<p class=\"placemenu\">\r\n<ul>\r\n<li>\r\n<a href=\"#\">jjj</a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jj</a>\r\n</li>\r\n<li>\r\n<a href=\"#\"></a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jj</a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jjj</a>\r\n</li>\r\n</ul>\r\n</P>\r\n','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 05:08:37','2015-08-23 05:08:37','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(232,1,'2015-08-23 05:09:38','2015-08-23 05:09:38','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n<li>\r\n<a href=\"#\">jjj</a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jj</a>\r\n</li>\r\n<li>\r\n<a href=\"#\"></a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jj</a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jjj</a>\r\n</li>\r\n</ul>\r\n\r\n','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 05:09:38','2015-08-23 05:09:38','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(233,1,'2015-08-23 05:19:57','2015-08-23 05:19:57','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n<li class=\"placemenu2\">\r\n<a href=\"#\">jjj</a>\r\n</li>\r\n<li class=\"placemenu3\">\r\n<a href=\"#\">jj</a>\r\n</li>\r\n<li class=\"placemenu4\">\r\n<a href=\"#\"></a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jj</a>\r\n</li>\r\n<li>\r\n<a href=\"#\">jjj</a>\r\n</li>\r\n</ul>\r\n\r\n','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 05:19:57','2015-08-23 05:19:57','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(234,1,'2015-08-23 05:33:52','2015-08-23 05:33:52','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu2\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu4\"></li>\r\n <li><a href=\"#\">jj</a></li>\r\n <li><a href=\"#\">jjj</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 05:33:52','2015-08-23 05:33:52','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(235,1,'2015-08-23 05:41:21','2015-08-23 05:41:21','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 05:41:21','2015-08-23 05:41:21','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(236,1,'2015-08-23 06:03:35','2015-08-23 06:03:35','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"#\">jjj</a></li>\r\n\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 06:03:35','2015-08-23 06:03:35','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(237,1,'2015-08-23 06:19:52','2015-08-23 06:19:52','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\">chaldal</a></li>\r\n\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 06:19:52','2015-08-23 06:19:52','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(238,1,'2015-08-23 06:21:22','2015-08-23 06:21:22','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro.jpg\"><img class=\"alignnone wp-image-203 size-large\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-1024x409.jpg\" alt=\"Food-Agro\" width=\"920\" height=\"367\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 06:21:22','2015-08-23 06:21:22','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(239,1,'2015-08-23 07:08:31','2015-08-23 07:08:31','','Food-Agro--BBoard-S---50\'--X--20\'','','inherit','open','open','','food-agro-bboard-s-50-x-20','','','2015-08-23 07:08:31','2015-08-23 07:08:31','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg',0,'attachment','image/jpeg',0),(240,1,'2015-08-23 07:09:35','2015-08-23 07:09:35','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"664\" height=\"269\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 07:09:35','2015-08-23 07:09:35','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(241,1,'2015-08-23 07:10:33','2015-08-23 07:10:33','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"849\" height=\"332\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 07:10:33','2015-08-23 07:10:33','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(242,1,'2015-08-23 07:11:26','2015-08-23 07:11:26','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-23 07:11:26','2015-08-23 07:11:26','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(244,1,'2015-08-29 04:54:47','2015-08-29 04:54:47','','Naogaon-trade-logo-01','','inherit','open','open','','naogaon-trade-logo-01','','','2015-08-29 04:54:47','2015-08-29 04:54:47','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png',0,'attachment','image/png',0),(246,1,'2015-08-29 04:55:36','2015-08-29 04:55:36','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\"><img class=\"alignnone wp-image-244\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\" alt=\"Naogaon-trade-logo-01\" width=\"137\" height=\"111\" /></a> [/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-08-29 04:55:36','2015-08-29 04:55:36','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(248,1,'2015-09-13 06:20:53','2015-09-13 06:20:53','','Logo_Sticker','','inherit','open','open','','logo_sticker','','','2015-09-13 06:20:53','2015-09-13 06:20:53','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg',0,'attachment','image/jpeg',0),(249,1,'2015-09-13 06:21:09','2015-09-13 06:21:09','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\"><img class=\"alignnone wp-image-244\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\" alt=\"Naogaon-trade-logo-01\" width=\"137\" height=\"111\" /></a> [/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"300\" height=\"161\" class=\"alignnone size-full wp-image-248\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-13 06:21:09','2015-09-13 06:21:09','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(250,1,'2015-09-13 06:21:57','2015-09-13 06:21:57','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\"><img class=\"alignnone wp-image-244\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\" alt=\"Naogaon-trade-logo-01\" width=\"137\" height=\"111\" /></a> [/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"228\" height=\"122\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-13 06:21:57','2015-09-13 06:21:57','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(251,1,'2015-09-13 06:22:54','2015-09-13 06:22:54','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\"><img class=\"alignnone wp-image-244\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\" alt=\"Naogaon-trade-logo-01\" width=\"137\" height=\"111\" /></a> [/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\nRadio Partner\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"228\" height=\"122\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-13 06:22:54','2015-09-13 06:22:54','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(252,1,'2015-09-13 06:23:34','2015-09-13 06:23:34','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\"><img class=\"alignnone wp-image-244\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\" alt=\"Naogaon-trade-logo-01\" width=\"137\" height=\"111\" /></a> [/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n<span style=\"color: #000000;\"><em><strong>Radio Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"228\" height=\"122\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-13 06:23:34','2015-09-13 06:23:34','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(253,1,'2015-09-13 06:29:49','2015-09-13 06:29:49','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\"><img class=\"alignnone wp-image-244\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\" alt=\"Naogaon-trade-logo-01\" width=\"137\" height=\"111\" /></a> [/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n<span style=\"color: #000000;\"><em><strong>Radio Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"161\" height=\"86\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-13 06:29:49','2015-09-13 06:29:49','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(254,1,'2015-09-16 04:21:39','2015-09-16 04:21:39','','KFK-Logo','','inherit','open','open','','kfk-logo','','','2015-09-16 04:21:39','2015-09-16 04:21:39','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/KFK-Logo.jpg',0,'attachment','image/jpeg',0),(255,1,'2015-09-16 04:21:56','2015-09-16 04:21:56','','Untitled-3','','inherit','open','open','','untitled-3','','','2015-09-16 04:21:56','2015-09-16 04:21:56','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Untitled-3.jpg',0,'attachment','image/jpeg',0),(256,1,'2015-09-16 04:22:24','2015-09-16 04:22:24','','Bellissimo-Final-logo','','inherit','open','open','','bellissimo-final-logo','','','2015-09-16 04:22:24','2015-09-16 04:22:24','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Bellissimo-Final-logo.jpg',0,'attachment','image/jpeg',0),(257,1,'2015-09-16 04:22:52','2015-09-16 04:22:52','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header][logos]<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\"><img class=\"alignnone size-full wp-image-222\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p6-logo.jpg\" alt=\"p6-logo\" width=\"210\" height=\"110\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo.png\"><img class=\"alignnone wp-image-213\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p7-logo-300x242.png\" alt=\"p7-logo\" width=\"170\" height=\"128\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo.png\"><img class=\"alignnone wp-image-214\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p8-logo-300x249.png\" alt=\"p8-logo\" width=\"201\" height=\"146\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo.png\"><img class=\"alignnone wp-image-215\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p9-logo-186x300.png\" alt=\"p9-logo\" width=\"133\" height=\"178\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\"><img class=\"alignnone size-full wp-image-188\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p1-logo.png\" alt=\"p1-logo\" width=\"200\" height=\"58\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\"><img class=\"alignnone size-full wp-image-189\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p2-logo.png\" alt=\"p2-logo\" width=\"200\" height=\"62\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\"><img class=\"alignnone size-full wp-image-190\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p3-logo.png\" alt=\"p3-logo\" width=\"200\" height=\"45\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\"><img class=\"alignnone size-full wp-image-191\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/p4-logo.png\" alt=\"p4-logo\" width=\"200\" height=\"52\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\"><img class=\"alignnone size-full wp-image-198\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sincos.jpg\" alt=\"sincos\" width=\"200\" height=\"50\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\"><img class=\"alignnone size-full wp-image-199\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/market.jpg\" alt=\"market\" width=\"200\" height=\"89\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\"><img class=\"alignnone size-full wp-image-200\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/sullar.jpg\" alt=\"sullar\" width=\"200\" height=\"78\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\"><img class=\"alignnone wp-image-244\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Naogaon-trade-logo-01.png\" alt=\"Naogaon-trade-logo-01\" width=\"137\" height=\"111\" /></a>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/KFK-Logo.jpg\"><img class=\"alignnone size-full wp-image-254\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/KFK-Logo.jpg\" alt=\"KFK-Logo\" width=\"200\" height=\"127\" /></a><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Untitled-3.jpg\"><img class=\"alignnone wp-image-255\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Untitled-3.jpg\" alt=\"Untitled-3\" width=\"125\" height=\"150\" /></a> <a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Bellissimo-Final-logo.jpg\"><img class=\"alignnone size-full wp-image-256\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Bellissimo-Final-logo.jpg\" alt=\"Bellissimo-Final-logo\" width=\"300\" height=\"118\" /></a>[/logos]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n<span style=\"color: #000000;\"><em><strong>Radio Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"161\" height=\"86\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 04:22:52','2015-09-16 04:22:52','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(260,1,'2015-09-16 04:40:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:40:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=260',0,'ngg_gallery','',0),(261,1,'2015-09-16 04:40:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:40:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=261',0,'ngg_pictures','',0),(262,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=262',0,'ngg_pictures','',0),(263,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_gallery','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=263',0,'ngg_gallery','',0),(264,1,'2015-09-16 04:40:56','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:40:56','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=264',0,'ngg_pictures','',0),(266,1,'2015-09-16 04:41:27','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:27','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=266',0,'ngg_pictures','',0),(268,1,'2015-09-16 04:41:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=268',0,'ngg_pictures','',0),(270,1,'2015-09-16 04:41:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=270',0,'ngg_pictures','',0),(272,1,'2015-09-16 04:41:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=272',0,'ngg_pictures','',0),(274,1,'2015-09-16 04:41:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=274',0,'ngg_pictures','',0),(276,1,'2015-09-16 04:41:31','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:31','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=276',0,'ngg_pictures','',0),(278,1,'2015-09-16 04:41:31','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:31','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=278',0,'ngg_pictures','',0),(280,1,'2015-09-16 04:41:32','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:32','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=280',0,'ngg_pictures','',0),(281,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=281',0,'ngg_pictures','',0),(282,1,'2015-09-16 04:41:33','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:33','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=282',0,'ngg_pictures','',0),(284,1,'2015-09-16 04:41:34','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:34','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=284',0,'ngg_pictures','',0),(286,1,'2015-09-16 04:41:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=286',0,'ngg_pictures','',0),(288,1,'2015-09-16 04:41:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=288',0,'ngg_pictures','',0),(290,1,'2015-09-16 04:41:37','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:37','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=290',0,'ngg_pictures','',0),(292,1,'2015-09-16 04:41:50','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:41:50','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=292',0,'ngg_pictures','',0),(294,1,'2015-09-16 04:44:49','2015-09-16 04:44:49','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n</ul>\r\n<span style=\"color: #000000;\"><em><strong>Radio Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"161\" height=\"86\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 04:44:49','2015-09-16 04:44:49','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(295,1,'2015-09-16 04:52:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:52:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=295',0,'ngg_pictures','',0),(297,1,'2015-09-16 04:53:37','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:53:37','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=297',0,'ngg_pictures','',0),(299,1,'2015-09-16 04:54:54','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:54:54','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=299',0,'ngg_pictures','',0),(300,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=300',0,'ngg_pictures','',0),(301,1,'2015-09-16 04:58:13','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 04:58:13','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=301',0,'ngg_pictures','',0),(302,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=302',0,'ngg_pictures','',0),(303,1,'2015-09-16 05:00:18','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:00:18','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=303',0,'ngg_pictures','',0),(305,1,'2015-09-16 05:02:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:02:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=305',0,'ngg_pictures','',0),(306,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=306',0,'ngg_pictures','',0),(307,1,'2015-09-16 05:04:32','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:04:32','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=307',0,'ngg_pictures','',0),(309,1,'2015-09-16 05:05:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:05:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=309',0,'ngg_pictures','',0),(310,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=310',0,'ngg_pictures','',0),(311,1,'2015-09-16 05:07:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:07:35','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=311',0,'ngg_pictures','',0),(313,1,'2015-09-16 05:07:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:07:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=313',0,'ngg_pictures','',0),(315,1,'2015-09-16 05:07:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:07:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=315',0,'ngg_pictures','',0),(316,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=316',0,'ngg_pictures','',0),(317,1,'2015-09-16 05:08:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:08:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=317',0,'ngg_pictures','',0),(319,1,'2015-09-16 05:09:15','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:09:15','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=319',0,'ngg_pictures','',0),(320,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=320',0,'ngg_pictures','',0),(321,1,'2015-09-16 05:10:21','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:10:21','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=321',0,'ngg_pictures','',0),(322,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=322',0,'ngg_pictures','',0),(323,1,'2015-09-16 05:12:02','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:12:02','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=323',0,'ngg_pictures','',0),(325,1,'2015-09-16 05:15:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:15:55','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=325',0,'ngg_pictures','',0),(326,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=326',0,'ngg_pictures','',0),(327,1,'2015-09-16 05:18:46','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:18:46','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=327',0,'ngg_pictures','',0),(328,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=328',0,'ngg_pictures','',0),(329,1,'2015-09-16 05:20:45','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:20:45','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=329',0,'ngg_pictures','',0),(330,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=330',0,'ngg_pictures','',0),(331,1,'2015-09-16 05:21:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:21:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=331',0,'ngg_pictures','',0),(332,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=332',0,'ngg_pictures','',0),(333,1,'2015-09-16 05:29:04','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:29:04','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=333',0,'ngg_pictures','',0),(334,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=334',0,'ngg_pictures','',0),(335,1,'2015-09-16 05:34:07','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 05:34:07','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=335',0,'ngg_pictures','',0),(336,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=336',0,'ngg_pictures','',0),(337,1,'2015-09-16 08:11:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-16 08:11:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=337',0,'ngg_pictures','',0),(338,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=338',0,'ngg_pictures','',0),(339,1,'2015-09-16 10:29:59','2015-09-16 10:29:59','','Food-&-Agro--Partners-02','','inherit','open','open','','food-agro-partners-02','','','2015-09-16 10:29:59','2015-09-16 10:29:59','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-Partners-02.png',0,'attachment','image/png',0),(340,1,'2015-09-16 10:36:37','2015-09-16 10:36:37','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">AamarTech</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n<span style=\"color: #000000;\"><em><strong>Radio Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"161\" height=\"86\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 10:36:37','2015-09-16 10:36:37','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(341,1,'2015-09-16 10:36:49','2015-09-16 10:36:49','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\"></a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n<span style=\"color: #000000;\"><em><strong>Radio Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"161\" height=\"86\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 10:36:49','2015-09-16 10:36:49','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(342,1,'2015-09-16 10:38:24','2015-09-16 10:38:24','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\"></a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\"><img class=\"alignnone wp-image-248\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Logo_Sticker.jpg\" alt=\"Logo_Sticker\" width=\"161\" height=\"86\" /></a>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 10:38:24','2015-09-16 10:38:24','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(343,1,'2015-09-16 10:39:06','2015-09-16 10:39:06','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\"></a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 10:39:06','2015-09-16 10:39:06','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(344,1,'2015-09-16 10:42:12','2015-09-16 10:42:12','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"80\" height=\"111\" /></a><span style=\"color: #000000;\"><strong><em>Presents</em></strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"https://chaldal.com/\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\"></a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"\" target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 10:42:12','2015-09-16 10:42:12','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(345,1,'2015-09-16 11:00:59','2015-09-16 11:00:59','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"https://chaldal.com/\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:00:59','2015-09-16 11:00:59','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(346,1,'2015-09-16 11:03:11','2015-09-16 11:03:11','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"https://chaldal.com/\"target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\">ggg</li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:03:11','2015-09-16 11:03:11','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(347,1,'2015-09-16 11:03:50','2015-09-16 11:03:50','\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\">ggg</li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:03:50','2015-09-16 11:03:50','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(348,1,'2015-09-16 11:05:05','2015-09-16 11:05:05','\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:05:05','2015-09-16 11:05:05','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(349,1,'2015-09-16 11:06:16','2015-09-16 11:06:16','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"https://chaldal.com/\"target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\"target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:06:16','2015-09-16 11:06:16','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(350,1,'2015-09-16 11:07:03','2015-09-16 11:07:03','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"https://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:07:03','2015-09-16 11:07:03','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(351,1,'2015-09-16 11:07:51','2015-09-16 11:07:51','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"http://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:07:51','2015-09-16 11:07:51','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(352,1,'2015-09-16 11:10:19','2015-09-16 11:10:19','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"http://chaldal.com/\" target=\"_blank\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:10:19','2015-09-16 11:10:19','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(353,1,'2015-09-16 11:15:50','2015-09-16 11:15:50','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a target=\"_blank\">ttt</a></li>\r\n <li class=\"placemenu7\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:15:50','2015-09-16 11:15:50','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(354,1,'2015-09-16 11:17:30','2015-09-16 11:17:30','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-16 11:17:30','2015-09-16 11:17:30','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(355,1,'2015-09-17 06:07:40','2015-09-17 06:07:40','','Swad-Musthead','','inherit','open','open','','swad-musthead','','','2015-09-17 06:07:40','2015-09-17 06:07:40','',5,'http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png',0,'attachment','image/png',0),(356,1,'2015-09-17 06:08:41','2015-09-17 06:08:41','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\">Magazine Partner\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-17 06:08:41','2015-09-17 06:08:41','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(357,1,'2015-09-17 06:09:30','2015-09-17 06:09:30','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">jj</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-17 06:09:30','2015-09-17 06:09:30','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(358,1,'2015-09-17 08:58:31','2015-09-17 08:58:31','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu5\"><a href=\"#\">jjj</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-17 08:58:31','2015-09-17 08:58:31','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(359,1,'2015-09-17 09:10:15','2015-09-17 09:10:15','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">ggg</a></li>\r\n <li class=\"placemenu4\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-17 09:10:15','2015-09-17 09:10:15','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(360,1,'2015-09-17 09:15:53','2015-09-17 09:15:53','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-17 09:15:53','2015-09-17 09:15:53','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(361,1,'2015-09-17 09:49:27','2015-09-17 09:49:27','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"#\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"http://independent24.tv/\" target=\"_blank\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-17 09:49:27','2015-09-17 09:49:27','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(362,1,'2015-09-17 09:51:10','2015-09-17 09:51:10','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/U8KmrWfEkYI\" width=\"492\" height=\"279\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-17 09:51:10','2015-09-17 09:51:10','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(363,1,'2015-09-19 04:08:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-19 04:08:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=363',0,'ngg_pictures','',0),(364,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=364',0,'ngg_pictures','',0),(365,1,'2015-09-21 06:27:12','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:12','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=365',0,'ngg_pictures','',0),(366,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=366',0,'ngg_pictures','',0),(367,1,'2015-09-21 06:27:13','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:13','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=367',0,'ngg_pictures','',0),(368,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=368',0,'ngg_pictures','',0),(369,1,'2015-09-21 06:27:14','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:14','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=369',0,'ngg_pictures','',0),(370,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=370',0,'ngg_pictures','',0),(371,1,'2015-09-21 06:27:15','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:15','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=371',0,'ngg_pictures','',0),(372,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=372',0,'ngg_pictures','',0),(373,1,'2015-09-21 06:27:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=373',0,'ngg_pictures','',0),(374,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=374',0,'ngg_pictures','',0),(375,1,'2015-09-21 06:27:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=375',0,'ngg_pictures','',0),(376,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=376',0,'ngg_pictures','',0),(377,1,'2015-09-21 06:27:18','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:18','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=377',0,'ngg_pictures','',0),(378,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=378',0,'ngg_pictures','',0),(379,1,'2015-09-21 06:27:19','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:19','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=379',0,'ngg_pictures','',0),(380,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=380',0,'ngg_pictures','',0),(381,1,'2015-09-21 06:27:20','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:20','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=381',0,'ngg_pictures','',0),(382,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=382',0,'ngg_pictures','',0),(383,1,'2015-09-21 06:27:21','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:21','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=383',0,'ngg_pictures','',0),(384,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=384',0,'ngg_pictures','',0),(385,1,'2015-09-21 06:27:22','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:22','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=385',0,'ngg_pictures','',0),(386,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=386',0,'ngg_pictures','',0),(387,1,'2015-09-21 06:27:23','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:23','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=387',0,'ngg_pictures','',0),(388,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=388',0,'ngg_pictures','',0),(389,1,'2015-09-21 06:27:24','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:24','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=389',0,'ngg_pictures','',0),(390,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=390',0,'ngg_pictures','',0),(391,1,'2015-09-21 06:27:25','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:25','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=391',0,'ngg_pictures','',0),(393,1,'2015-09-21 06:27:26','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:26','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=393',0,'ngg_pictures','',0),(394,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=394',0,'ngg_pictures','',0),(395,1,'2015-09-21 06:27:27','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-21 06:27:27','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=395',0,'ngg_pictures','',0),(396,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=396',0,'ngg_pictures','',0),(397,1,'2015-09-22 09:23:17','2015-09-22 09:23:17','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #339966;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\n\n<table>\n<tbody>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Official Name</span></strong><span style=\"color: #000000;\"> </span></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Geographical Location</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Borders</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Population / Literacy</span></strong><span style=\"color: #000000;\"> </span></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Capital</span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Major Cities</span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Places of tourist interest</span></strong><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span>\n\n<span style=\"color: #000000;\"> </span>\n\n<span style=\"color: #000000;\"> </span>\n\n<span style=\"color: #000000;\"> </span>\n\n<span style=\"color: #000000;\"> </span></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra safari park, Sitakund echo park at Chittagong, century old historical sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lashgreen tea gargens of Sylhet, riverine life etc.</span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Exchange Rate</span></strong><span style=\"color: #000000;\"> </span></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sectoral share of GDP</span></strong><span style=\"color: #000000;\"> </span></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">GDP/rate of growth</span></strong><span style=\"color: #000000;\"> </span></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td width=\"160\"><strong><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></strong></td>\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></strong></td>\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></strong></td>\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></strong></td>\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\n</tr>\n<tr>\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></strong></td>\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\n</tr>\n<tr>\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\n</tr>\n</tbody>\n</table>\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\n\n<ul style=\"text-align: justify;\">\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\n</ul>\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>\n<p style=\"text-align: justify;\"></p>','About Bangladesh','','inherit','open','open','','25-autosave-v1','','','2015-09-22 09:23:17','2015-09-22 09:23:17','',25,'http://cems-foodagro.com/25-autosave-v1/',0,'revision','',0),(398,1,'2015-09-21 06:51:29','2015-09-21 06:51:29','<em><span style=\"color: #000000;\"><strong>BANGLA<span style=\"color: #ff0000;\">DESH</span></strong></span></em>\r\n\r\n<span style=\"color: #000000;\"><a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><span style=\"color: #000000;\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></span></a></span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<div align=\"center\">\r\n<table border=\"0\" width=\"698\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"351\"><span style=\"color: #000000;\"><b>Population</b>:</span></td>\r\n<td valign=\"top\" width=\"347\"><span style=\"color: #000000;\">138.4 million</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Urban Population</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">26%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Major Ethnic and Linguistic Groups</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Bengali – 98%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Religions</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Muslim – 83%</span>\r\n<span style=\"color: #000000;\"> Hindu – 16%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Population Growth Rate</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">2.06%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Life Expectancy</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">70.30 years</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Infant Mortality</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">66 per 1,000 live births</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Under Five Mortality</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">77 per 1,000 live births</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Maternal Mortality Rate</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">400 per 100,000 live births</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>GNP Per Capita</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">$370</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Percentage of Literate Adult Males</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">54%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Percentage of Literate Adult Females</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">32%</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div align=\"center\">\r\n\r\n<hr align=\"center\" size=\"1\" width=\"100%\" />\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"><span style=\"color: #000000;\"><b>Percentage Population With Access\r\nTo Safe Drinking Water</b>:</span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">97%</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<span style=\"color: #000000;\"> </span>\r\n<p align=\"center\"><span style=\"color: #000000;\">Economy at A Glance</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Bangladesh has an agrarian economy with 25% of GDP coming from the agriculture, forestry and fisheries sector. Major agricultural products are rice, jute, wheat, potato, pulse, tobacco, tea, sugarcane, and etc. The country is the largest exporter of jute and jute goods in the world. Readymade Garments occupy the topmost position among the exportable items. Tea, frozen shrimps, leather goods, fish and vegetables ceramic-ware flowers and handicrafts are also major exportable commodities.</span></p>\r\n\r\n<table border=\"0\" width=\"95%\" cellspacing=\"1\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"><b>GDP at Current Price</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Tk. 3,004.85 billion US$ 51.897 billion</span>\r\n<span style=\"color: #000000;\"> Annual per Capita GDP US$ 389</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>GDP Growth (at FY ’96 Constant Price)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">5.33%</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Industrial Growth (at FY ’96 Constant Price)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">7.3%</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Inflation Rate</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">5.1%</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Investment Rate</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">23.2% of GDP</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>National Savings Rate</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">23.7% of GDP</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Exports (US $)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">US $ 6,548 million</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Imports (US $)</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">US $ 8,699 million</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Industries</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Jute, tea, textiles, garments, paper, newsprint, fertilizer, leather and leather goods, sugar, cement, fish processing, pharmaceuticals, chemical industries, etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Exports</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Garments, raw jute, jute manufactures, jute products, tea, leather, leather products, frozen shrimps, other fish products, newsprint, paper, naphtha, furnace oil, urea, ceramic products etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Imports</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">Wheat, oil, seeds, crude petroleum, raw cotton, edible oil, petroleum products, fertilizer, staple fibers, yarn, iron & steel, capital goods, etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"284\"><span style=\"color: #000000;\"><b>Major Trading Partners</b></span></td>\r\n<td valign=\"top\"><span style=\"color: #000000;\">USA, EU Countries, India, China, Japan, South Korea, Australia, Malaysia, Hong Kong, Taiwan, Indonesia, Thailand, Saudi Arabia, UAE.</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 06:51:29','2015-09-21 06:51:29','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(399,1,'2015-09-21 10:31:12','2015-09-21 10:31:12','<em><span style=\"color: #000000;\"><strong>BANGLA<span style=\"color: #ff0000;\">DESH</span></strong></span></em>\r\n\r\n<span style=\"color: #000000;\"><a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><span style=\"color: #000000;\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></span></a></span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:31:12','2015-09-21 10:31:12','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(400,1,'2015-09-21 10:35:36','2015-09-21 10:35:36','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Government : Parliamentary form of government, headed by Prime Minister</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\' North</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Climate : Winter 11o C - 20o C (October - February)</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September).</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Standard Time : GMT +6 hours</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Population / Literacy : 145 million / 60%</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> English is widely understood and spoken.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq. km.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> safari park, Sitakund echo park at Chittagong, century old historical</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> green tea gargens of Sylhet, riverine life etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> and others 0.3%</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Information Technology : </strong>Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:35:36','2015-09-21 10:35:36','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(401,1,'2015-09-21 10:39:52','2015-09-21 10:39:52','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n \r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"638\">Official Name : The People’s Republic of Bangladesh\r\n\r\nGovernment : Parliamentary form of government, headed by Prime Minister\r\n\r\nGeographical Location : Latitude between 20o34\' and 26o38\' North\r\n\r\nLongitude between 88o01\' and 92o41\' East\r\n\r\nArea/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n\r\nBorders : North - India (West Bengal & Meghalaya), West - India (West Bengal),\r\n\r\nEast - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.\r\n\r\nSeasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.\r\n\r\nClimate : Winter 11o C - 20o C (October - February)\r\n\r\nSummer 21o C - 38o C (March - September).\r\n\r\nAnnual Rainfall : Varies from 110 cm to 340 cm at different areas.\r\n\r\nStandard Time : GMT +6 hours\r\n\r\nPopulation / Literacy : 145 million / 60%\r\n\r\nLanguage : Bangla (National Language) spoken by 95%, other dialects 5%,\r\n\r\nEnglish is widely understood and spoken.\r\n\r\nCapital : Dhaka, Area 1416 sq. km.\r\n\r\nAdministrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319\r\n\r\nMajor Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc.\r\n\r\nAirports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.\r\n\r\nInternational Airports : Dhaka, Sylhet and Chittagong\r\n\r\nSea Ports : Chittagong and Mongla\r\n\r\nPlaces of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\n\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\n\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\n\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\n\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\n\r\ngreen tea gargens of Sylhet, riverine life etc.\r\n\r\nBanking hour : Sunday- Thursday (10:00 am – 4:00 pm)\r\n\r\nBusiness Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,\r\n\r\nFriday & Saturday closed. Some Private business houses work on Saturday.\r\n\r\nCurrency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.\r\n\r\nExchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00\r\n\r\nReligion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%\r\n\r\nand others 0.3%\r\n\r\nSectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.\r\n\r\nGDP/rate of growth : US$100 billion /6.12% (2013-14)\r\n\r\nPer Capita GDP/GNI : US$1,314 (2015)\r\n\r\nPrincipal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and\r\n\r\nElectronics, Medicine, Fishing.\r\n\r\nPrincipal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.\r\n\r\nAnnual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)\r\n\r\nMajor Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,\r\n\r\nLeather & Leather products, Tea, Ceramics, Textile products etc.\r\n\r\nMajor Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.\r\n\r\nMajor trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE\r\n\r\n<strong>Information Technology : </strong>Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of\r\n\r\npopulation)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population\r\n\r\n </td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:39:52','2015-09-21 10:39:52','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(402,1,'2015-09-21 10:42:36','2015-09-21 10:42:36','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:42:36','2015-09-21 10:42:36','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(403,1,'2015-09-21 10:53:30','2015-09-21 10:53:30','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"638\">Official Name : The People’s Republic of Bangladesh\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Government : Parliamentary form of government, headed by Prime Minister\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Geographical Location : Latitude between 20o34\' and 26o38\' North\r\n\r\nLongitude between 88o01\' and 92o41\' East\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),\r\n\r\nEast - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Climate : Winter 11o C - 20o C (October - February)\r\n\r\nSummer 21o C - 38o C (March - September).\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Standard Time : GMT +6 hours\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Population / Literacy : 145 million / 60%\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,\r\n\r\nEnglish is widely understood and spoken.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Capital : Dhaka, Area 1416 sq. km</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">International Airports : Dhaka, Sylhet and Chittagong\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Sea Ports : Chittagong and Mongla\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\n\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\n\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\n\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\n\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\n\r\ngreen tea gargens of Sylhet, riverine life etc.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,\r\n\r\nFriday & Saturday closed. Some Private business houses work on Saturday</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%\r\n\r\nand others 0.3%\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">GDP/rate of growth : US$100 billion /6.12% (2013-14)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Per Capita GDP/GNI : US$1,314 (2015)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and\r\n\r\nElectronics, Medicine, Fishing.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,\r\n\r\nLeather & Leather products, Tea, Ceramics, Textile products etc</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><strong>Information Technology : </strong>Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population\r\n\r\n </td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:53:30','2015-09-21 10:53:30','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(404,1,'2015-09-21 10:54:47','2015-09-21 10:54:47','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Government : Parliamentary form of government, headed by PrimeMinister</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span><span style=\"color: #000000;\">East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Climate : Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Standard Time : GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Population / Literacy : 145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span><span style=\"color: #000000;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n\r\n<span style=\"color: #000000;\">safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n\r\n<span style=\"color: #000000;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n\r\n<span style=\"color: #000000;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n\r\n<span style=\"color: #000000;\">green tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span><span style=\"color: #000000;\">Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span><span style=\"color: #000000;\">and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span><span style=\"color: #000000;\">Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span><span style=\"color: #000000;\">Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\"><strong>Information Technology : </strong>Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:54:47','2015-09-21 10:54:47','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(405,1,'2015-09-21 10:57:25','2015-09-21 10:57:25','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Government : Parliamentary form of government, headed by PrimeMinister</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span><span style=\"color: #000000;\">East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Climate : Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Standard Time : GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Population / Literacy : 145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span><span style=\"color: #000000;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span><span style=\"color: #000000;\">safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n\r\n<span style=\"color: #000000;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n\r\n<span style=\"color: #000000;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n\r\n<span style=\"color: #000000;\">green tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span><span style=\"color: #000000;\">Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span><span style=\"color: #000000;\">and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span><span style=\"color: #000000;\">Electronics, Medicine, Fishing.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span><span style=\"color: #000000;\">Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\"><strong>Information Technology : </strong>Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:57:25','2015-09-21 10:57:25','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(406,1,'2015-09-21 10:59:36','2015-09-21 10:59:36','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table class=\"MsoTableGrid\" style=\"border-collapse: collapse; border: none;\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Official Name : The People’s Republic of\r\nBangladesh</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Government : Parliamentary form of\r\ngovernment, headed by Prime Minister</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Geographical Location : Latitude between 20o34\' and 26o38\'\r\nNorth</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> Longitude\r\nbetween 88o01\' and 92o41\' East</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Area/Land : 147,570 sq. km. mostly\r\nalluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to\r\n370.40 km.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Borders : North - India (West\r\nBengal & Meghalaya), West - India (West Bengal),</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> East - India\r\n(Tripura & Assam) and Myanmar, South - Bay of Bengal.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Seasons : Summer, Monsoon,\r\nAutumn, Late Autumn, Winter & Spring.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Climate : Winter 11o C - 20o C\r\n(October - February)</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> Summer 21o C\r\n- 38o C (March - September).</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Annual Rainfall : Varies from 110 cm to 340\r\ncm at different areas.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Standard Time : GMT +6 hours</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Population / Literacy : 145 million / 60%</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Language : Bangla (National\r\nLanguage) spoken by 95%, other dialects 5%,</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> English is\r\nwidely understood and spoken.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\">Capital : Dhaka, Area 1416 sq.\r\nkm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Administrative Units : Division:6; Zila:64; Thana:507;\r\nUnion:4484; Village:87319</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\">Major Cities : Dhaka, Chittagong,\r\nSylhet, Khulna, Rajshahi, Barisal, Rangpur etc</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Airports : Dhaka, Chittagong,\r\nSylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and\r\nBarisal.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">International Airports : Dhaka, Sylhet and Chittagong</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Sea Ports : Chittagong and Mongla</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height: 121.85pt;\">\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt; height: 121.85pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Places of tourist interest : Colourful\r\ntribal life of Hill Tracts, World\'s largest and longest sea beach</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">safari park, Sitakund echo park at Chittagong, century old historical</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">green tea gargens of Sylhet, riverine life etc.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Banking hour : Sunday- Thursday (10:00 am\r\n– 4:00 pm)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Business Hours : Government Office Hours :\r\n9.00 a.m. to 5.00 p.m. Sunday-Thursday,</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"> Friday &\r\nSaturday closed. Some Private business houses work on Saturday</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Currency : Taka, having 1000,\r\n500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Exchange Rate : Floating Exchange Rate : US$\r\n1 = Taka 68.00, Euro 1.00=Tk 93.00</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Religion : Muslims - 86.6%,\r\nHindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> and others\r\n0.3%</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Sectoral share of GDP : 21.91% Agriculture, 28.44%\r\nIndustry, 49.65% Service.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Per Capita GDP/GNI : US$1,314 (2015)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Principal Industries : Garments, Tea, Ceramics,\r\nCement, Leather, Jute, Textiles, Electric and</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> Electronics,\r\nMedicine, Fishing.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Principal Crops : Rice, Jute, Tea, Wheat,\r\nSugarcane, Pulses, Mustard, Potato, Vegetables.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Annual Export / Import : US$30.2 billion / US$ 34.08\r\nbillion (2013-2014)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Major Exports : Garments, Knitwear, Frozen\r\nFoods (Shrimps), Jute & Jute products,</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"> Leather &\r\nLeather products, Tea, Ceramics, Textile products etc</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Major Imports : Oil, edible oil, petroleum\r\nproduct, wheat, seeds, fertilizer, yarn etc.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Major trading partners : USA, EU countries, China, India, Pakistan,\r\nJapan, South Korea, Canada, Australia, Malaysia,\r\nHong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\"><strong><span style=\"font-size: 11.0pt;\">Information Technology : </span></strong><span style=\"font-size: 11.0pt;\">Country Domain: .bd ; Internet Penetration: 4.46\r\ncrores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015),\r\nMobile Penetration: 80% of the population</span>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 10:59:36','2015-09-21 10:59:36','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(407,1,'2015-09-21 11:00:46','2015-09-21 11:00:46','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n<div class=WordSection1>\r\n<table class=\"MsoTableGrid\" style=\"border-collapse: collapse; border: none;\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Official Name : The People’s Republic of\r\nBangladesh</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Government : Parliamentary form of\r\ngovernment, headed by Prime Minister</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Geographical Location : Latitude between 20o34\' and 26o38\'\r\nNorth</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> Longitude\r\nbetween 88o01\' and 92o41\' East</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Area/Land : 147,570 sq. km. mostly\r\nalluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to\r\n370.40 km.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Borders : North - India (West\r\nBengal & Meghalaya), West - India (West Bengal),</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> East - India\r\n(Tripura & Assam) and Myanmar, South - Bay of Bengal.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Seasons : Summer, Monsoon,\r\nAutumn, Late Autumn, Winter & Spring.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Climate : Winter 11o C - 20o C\r\n(October - February)</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> Summer 21o C\r\n- 38o C (March - September).</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Annual Rainfall : Varies from 110 cm to 340\r\ncm at different areas.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Standard Time : GMT +6 hours</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Population / Literacy : 145 million / 60%</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Language : Bangla (National\r\nLanguage) spoken by 95%, other dialects 5%,</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> English is\r\nwidely understood and spoken.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\">Capital : Dhaka, Area 1416 sq.\r\nkm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Administrative Units : Division:6; Zila:64; Thana:507;\r\nUnion:4484; Village:87319</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\">Major Cities : Dhaka, Chittagong,\r\nSylhet, Khulna, Rajshahi, Barisal, Rangpur etc</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Airports : Dhaka, Chittagong,\r\nSylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and\r\nBarisal.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">International Airports : Dhaka, Sylhet and Chittagong</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Sea Ports : Chittagong and Mongla</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height: 121.85pt;\">\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt; height: 121.85pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Places of tourist interest : Colourful\r\ntribal life of Hill Tracts, World\'s largest and longest sea beach</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">safari park, Sitakund echo park at Chittagong, century old historical</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">green tea gargens of Sylhet, riverine life etc.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Banking hour : Sunday- Thursday (10:00 am\r\n– 4:00 pm)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Business Hours : Government Office Hours :\r\n9.00 a.m. to 5.00 p.m. Sunday-Thursday,</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"> Friday &\r\nSaturday closed. Some Private business houses work on Saturday</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Currency : Taka, having 1000,\r\n500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Exchange Rate : Floating Exchange Rate : US$\r\n1 = Taka 68.00, Euro 1.00=Tk 93.00</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Religion : Muslims - 86.6%,\r\nHindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> and others\r\n0.3%</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Sectoral share of GDP : 21.91% Agriculture, 28.44%\r\nIndustry, 49.65% Service.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Per Capita GDP/GNI : US$1,314 (2015)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Principal Industries : Garments, Tea, Ceramics,\r\nCement, Leather, Jute, Textiles, Electric and</p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\"> Electronics,\r\nMedicine, Fishing.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Principal Crops : Rice, Jute, Tea, Wheat,\r\nSugarcane, Pulses, Mustard, Potato, Vegetables.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Annual Export / Import : US$30.2 billion / US$ 34.08\r\nbillion (2013-2014)</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Major Exports : Garments, Knitwear, Frozen\r\nFoods (Shrimps), Jute & Jute products,</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"> Leather &\r\nLeather products, Tea, Ceramics, Textile products etc</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Major Imports : Oil, edible oil, petroleum\r\nproduct, wheat, seeds, fertilizer, yarn etc.</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in .0001pt 121.5pt;\">Major trading partners : USA, EU countries, China, India, Pakistan,\r\nJapan, South Korea, Canada, Australia, Malaysia,\r\nHong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border: solid windowtext 1.0pt; border-top: none; padding: 0in 5.4pt 0in 5.4pt;\" valign=\"top\" width=\"638\"><strong><span style=\"font-size: 11.0pt;\">Information Technology : </span></strong><span style=\"font-size: 11.0pt;\">Country Domain: .bd ; Internet Penetration: 4.46\r\ncrores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015),\r\nMobile Penetration: 80% of the population</span>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=MsoNormal> </p>\r\n\r\n</div>\r\n\r\n','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:00:46','2015-09-21 11:00:46','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(408,1,'2015-09-21 11:01:40','2015-09-21 11:01:40','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<div class=\"WordSection1\">\r\n<table class=\"MsoTableGrid\" style=\"border-collapse: collapse;\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 6.65in; border: 1pt solid windowtext; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Government : Parliamentary form of government, headed by Prime Minister</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\'</span>\r\n<span style=\"color: #000000;\"> North</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\"> Longitude</span>\r\n<span style=\"color: #000000;\"> between 88o01\' and 92o41\' East</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly</span>\r\n<span style=\"color: #000000;\"> alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to</span>\r\n<span style=\"color: #000000;\"> 370.40 km.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Borders : North - India (West</span>\r\n<span style=\"color: #000000;\"> Bengal & Meghalaya), West - India (West Bengal),</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\"> East - India</span>\r\n<span style=\"color: #000000;\"> (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Seasons : Summer, Monsoon,</span>\r\n<span style=\"color: #000000;\"> Autumn, Late Autumn, Winter & Spring.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Climate : Winter 11o C - 20o C</span>\r\n<span style=\"color: #000000;\"> (October - February)</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\"> Summer 21o C</span>\r\n<span style=\"color: #000000;\"> - 38o C (March - September).</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Annual Rainfall : Varies from 110 cm to 340</span>\r\n<span style=\"color: #000000;\"> cm at different areas.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Standard Time : GMT +6 hours</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Population / Literacy : 145 million / 60%</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Language : Bangla (National</span>\r\n<span style=\"color: #000000;\"> Language) spoken by 95%, other dialects 5%,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\"> English is</span>\r\n<span style=\"color: #000000;\"> widely understood and spoken.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq.</span>\r\n<span style=\"color: #000000;\"> km</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507;</span>\r\n<span style=\"color: #000000;\"> Union:4484; Village:87319</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong,</span>\r\n<span style=\"color: #000000;\"> Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Airports : Dhaka, Chittagong,</span>\r\n<span style=\"color: #000000;\"> Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and</span>\r\n<span style=\"color: #000000;\"> Barisal.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height: 121.85pt;\">\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt; height: 121.85pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Places of tourist interest : Colourful</span>\r\n<span style=\"color: #000000;\"> tribal life of Hill Tracts, World\'s largest and longest sea beach</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">safari park, Sitakund echo park at Chittagong, century old historical</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: justify; text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">green tea gargens of Sylhet, riverine life etc.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am</span>\r\n<span style=\"color: #000000;\"> – 4:00 pm)</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Business Hours : Government Office Hours :</span>\r\n<span style=\"color: #000000;\"> 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> Friday &</span>\r\n<span style=\"color: #000000;\"> Saturday closed. Some Private business houses work on Saturday</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Currency : Taka, having 1000,</span>\r\n<span style=\"color: #000000;\"> 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$</span>\r\n<span style=\"color: #000000;\"> 1 = Taka 68.00, Euro 1.00=Tk 93.00</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Religion : Muslims - 86.6%,</span>\r\n<span style=\"color: #000000;\"> Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\"> and others</span>\r\n<span style=\"color: #000000;\"> 0.3%</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44%</span>\r\n<span style=\"color: #000000;\"> Industry, 49.65% Service.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics,</span>\r\n<span style=\"color: #000000;\"> Cement, Leather, Jute, Textiles, Electric and</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\"> Electronics,</span>\r\n<span style=\"color: #000000;\"> Medicine, Fishing.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat,</span>\r\n<span style=\"color: #000000;\"> Sugarcane, Pulses, Mustard, Potato, Vegetables.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08</span>\r\n<span style=\"color: #000000;\"> billion (2013-2014)</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen</span>\r\n<span style=\"color: #000000;\"> Foods (Shrimps), Jute & Jute products,</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> Leather &</span>\r\n<span style=\"color: #000000;\"> Leather products, Tea, Ceramics, Textile products etc</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum</span>\r\n<span style=\"color: #000000;\"> product, wheat, seeds, fertilizer, yarn etc.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\">\r\n<p class=\"MsoNormal\" style=\"text-indent: -121.5pt; line-height: normal; margin: 0in 0in 0.0001pt 121.5pt;\"><span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan,</span>\r\n<span style=\"color: #000000;\"> Japan, South Korea, Canada, Australia, Malaysia,</span>\r\n<span style=\"color: #000000;\"> Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 6.65in; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; padding: 0in 5.4pt;\" valign=\"top\" width=\"638\"><span style=\"color: #000000;\"><strong><span style=\"font-size: 11pt;\">Information Technology : </span></strong><span style=\"font-size: 11pt;\">Country Domain: .bd ; Internet Penetration: 4.46\r\ncrores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015),\r\nMobile Penetration: 80% of the population</span></span>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><span style=\"color: #000000;\"> </span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"color: #000000;\"> </span></p>\r\n\r\n</div>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:01:40','2015-09-21 11:01:40','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(409,1,'2015-09-21 11:02:49','2015-09-21 11:02:49','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"638\">Official Name : The People’s Republic of Bangladesh\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Government : Parliamentary form of government, headed by Prime Minister\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Geographical Location : Latitude between 20o34\' and 26o38\' North\r\n\r\nLongitude between 88o01\' and 92o41\' East\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),\r\n\r\nEast - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Climate : Winter 11o C - 20o C (October - February)\r\n\r\nSummer 21o C - 38o C (March - September).\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Standard Time : GMT +6 hours\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Population / Literacy : 145 million / 60%\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,\r\n\r\nEnglish is widely understood and spoken.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Capital : Dhaka, Area 1416 sq. km</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">International Airports : Dhaka, Sylhet and Chittagong\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Sea Ports : Chittagong and Mongla\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\n\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\n\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\n\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\n\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\n\r\ngreen tea gargens of Sylhet, riverine life etc.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,\r\n\r\nFriday & Saturday closed. Some Private business houses work on Saturday</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%\r\n\r\nand others 0.3%\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">GDP/rate of growth : US$100 billion /6.12% (2013-14)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Per Capita GDP/GNI : US$1,314 (2015)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and\r\n\r\nElectronics, Medicine, Fishing.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,\r\n\r\nLeather & Leather products, Tea, Ceramics, Textile products etc</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><strong>Information Technology : </strong>Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population\r\n\r\n </td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:02:49','2015-09-21 11:02:49','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(410,1,'2015-09-21 11:04:04','2015-09-21 11:04:04','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table style=\"height: 3657px;\" width=\"809\">\r\n<tbody>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Government : Parliamentary form of government, headed by Prime Minister</span> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><span style=\"color: #000000;\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span><span style=\"color: #000000;\">East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring. </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Climate : Winter 11o C - 20o C (October - February)Summer 21o C - 38o C (March - September).\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas. </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Standard Time : GMT +6 hours </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Population / Literacy : 145 million / 60% </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,English is widely understood and spoken.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Capital : Dhaka, Area 1416 sq. km</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319 </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal. </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">International Airports : Dhaka, Sylhet and Chittagong </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Sea Ports : Chittagong and Mongla </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beachat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\n\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\n\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\n\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\n\r\ngreen tea gargens of Sylhet, riverine life etc.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm) </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins. </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00 </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%and others 0.3%\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service. </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">GDP/rate of growth : US$100 billion /6.12% (2013-14) </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Per Capita GDP/GNI : US$1,314 (2015) </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric andElectronics, Medicine, Fishing.\r\n\r\n </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables. </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014) </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc. </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE </td>\r\n</tr>\r\n<tr>\r\n<td width=\"638\"><strong>Information Technology : </strong>Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population </td>\r\n</tr>\r\n</tbody>\r\n</table>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:04:04','2015-09-21 11:04:04','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(411,1,'2015-09-21 11:05:02','2015-09-21 11:05:02','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\">Government : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\">Climate : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\">Standard Time : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\">Population / Literacy : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span>\r\n<span style=\"color: #000000;\"> at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n<span style=\"color: #000000;\"> safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n<span style=\"color: #000000;\"> sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n<span style=\"color: #000000;\"> home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n<span style=\"color: #000000;\"> green tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:05:02','2015-09-21 11:05:02','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(412,1,'2015-09-21 11:05:32','2015-09-21 11:05:32','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\">Government : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\">Climate : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\">Standard Time : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\">Population / Literacy : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span>\r\n<span style=\"color: #000000;\"> at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n<span style=\"color: #000000;\"> safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n<span style=\"color: #000000;\"> sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n<span style=\"color: #000000;\"> home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n<span style=\"color: #000000;\"> green tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:05:32','2015-09-21 11:05:32','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(413,1,'2015-09-21 11:06:29','2015-09-21 11:06:29','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\">Official Name : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\">Government : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\">Geographical Location : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\">Area/Land : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span>\r\n\r\n<span style=\"color: #000000;\"> Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\">Borders : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\">Seasons : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\">Climate : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\">Annual Rainfall : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\">Standard Time : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\">Population / Literacy : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\">Language : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span>\r\n<span style=\"color: #000000;\"> at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n<span style=\"color: #000000;\"> safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n<span style=\"color: #000000;\"> sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n<span style=\"color: #000000;\"> home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n<span style=\"color: #000000;\"> green tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:06:29','2015-09-21 11:06:29','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(414,1,'2015-09-21 11:07:53','2015-09-21 11:07:53','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span>\r\n\r\n<span style=\"color: #000000;\"> Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\">Capital : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\">Administrative Units : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\">Major Cities : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\">Airports : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\">International Airports : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\">Sea Ports : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\">Places of tourist interest : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span>\r\n<span style=\"color: #000000;\"> at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n<span style=\"color: #000000;\"> safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n<span style=\"color: #000000;\"> sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n<span style=\"color: #000000;\"> home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n<span style=\"color: #000000;\"> green tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\">Banking hour : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\">Business Hours : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\">Currency : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:07:53','2015-09-21 11:07:53','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(415,1,'2015-09-21 11:09:48','2015-09-21 11:09:48','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span>\r\n\r\n<span style=\"color: #000000;\"> Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest </strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span>\r\n<span style=\"color: #000000;\"> at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n<span style=\"color: #000000;\"> safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n<span style=\"color: #000000;\"> sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n<span style=\"color: #000000;\"> home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n<span style=\"color: #000000;\"> green tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\">Exchange Rate : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\">Religion : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\">Sectoral share of GDP : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\">GDP/rate of growth : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\">Per Capita GDP/GNI : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\">Principal Industries : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\">Principal Crops : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\">Annual Export / Import : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\">Major Exports : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\">Major Imports : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:09:48','2015-09-21 11:09:48','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(416,1,'2015-09-21 11:13:30','2015-09-21 11:13:30','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span>\r\n\r\n<span style=\"color: #000000;\"> Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:13:30','2015-09-21 11:13:30','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(417,1,'2015-09-21 11:14:02','2015-09-21 11:14:02','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span>\r\n\r\n<span style=\"color: #000000;\"> Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:14:02','2015-09-21 11:14:02','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(418,1,'2015-09-21 11:15:04','2015-09-21 11:15:04','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. \r\n Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:15:04','2015-09-21 11:15:04','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(419,1,'2015-09-21 11:15:35','2015-09-21 11:15:35','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. \r\n Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:15:35','2015-09-21 11:15:35','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(420,1,'2015-09-21 11:15:59','2015-09-21 11:15:59','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\">Major trading partners : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\">Information Technology : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:15:59','2015-09-21 11:15:59','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(421,1,'2015-09-21 11:17:13','2015-09-21 11:17:13','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:17:13','2015-09-21 11:17:13','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(422,1,'2015-09-21 11:18:58','2015-09-21 11:18:58','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km.</span>\r\n\r\n<span style=\"color: #000000;\">Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:18:58','2015-09-21 11:18:58','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(423,1,'2015-09-21 11:19:55','2015-09-21 11:19:55','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:19:55','2015-09-21 11:19:55','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(424,1,'2015-09-21 11:20:16','2015-09-21 11:20:16','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:20:16','2015-09-21 11:20:16','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(425,1,'2015-09-21 11:20:40','2015-09-21 11:20:40','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:20:40','2015-09-21 11:20:40','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(426,1,'2015-09-21 11:20:58','2015-09-21 11:20:58','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:20:58','2015-09-21 11:20:58','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(427,1,'2015-09-21 11:21:37','2015-09-21 11:21:37','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:21:37','2015-09-21 11:21:37','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(428,1,'2015-09-21 11:23:36','2015-09-21 11:23:36','<span style=\"color: #000000;\"><em><strong>BANGLADESH</strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:23:36','2015-09-21 11:23:36','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(429,1,'2015-09-21 11:25:57','2015-09-21 11:25:57','<span style=\"color: #000000;\"><em><strong><span style=\"color: #008000;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Official Name </strong> : The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Government </strong> : Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Geographical Location</strong> : Latitude between 20o34\' and 26o38\' North</span>\r\n<span style=\"color: #000000;\"> Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Area/Land </strong> : 147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.\r\n</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Borders </strong> : North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n<span style=\"color: #000000;\"> East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Seasons </strong> : Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Climate </strong> : Winter 11o C - 20o C (October - February)</span>\r\n<span style=\"color: #000000;\"> Summer 21o C - 38o C (March - September). </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Rainfall </strong> : Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Standard Time </strong> : GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Population / Literacy</strong> : 145 million / 60% </span>\r\n\r\n<span style=\"color: #000000;\"><strong>Language </strong> : Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n<span style=\"color: #000000;\"> English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Capital </strong> : Dhaka, Area 1416 sq. km</span>\r\n<span style=\"color: #000000;\"><strong>Administrative Units</strong> : Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Cities</strong> : Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span>\r\n<span style=\"color: #000000;\"><strong>Airports</strong> : Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar, Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>International Airports</strong> : Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sea Ports </strong> : Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Places of tourist interest</strong> : Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach\r\nat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra\r\nsafari park, Sitakund echo park at Chittagong, century old historical\r\nsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the\r\nhome of Royal Bengal Tiger and world\'s largest mangrove ferest, lash\r\ngreen tea gargens of Sylhet, riverine life etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Banking hour </strong> : Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Business Hours </strong> : Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n<span style=\"color: #000000;\"> Friday & Saturday closed. Some Private business houses work on Saturday</span>\r\n<span style=\"color: #000000;\"><strong>Currency </strong> : Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Exchange Rate </strong> : Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Religion </strong> : Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4%</span>\r\n<span style=\"color: #000000;\"> and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Sectoral share of GDP</strong> : 21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>GDP/rate of growth</strong> : US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Per Capita GDP/GNI</strong> : US$1,314 (2015)</span>\r\n<span style=\"color: #000000;\"><strong>Principal Industries </strong> : Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n<span style=\"color: #000000;\"> Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Principal Crops </strong> : Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Annual Export / Import</strong> : US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major Exports </strong> : Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n<span style=\"color: #000000;\"> Leather & Leather products, Tea, Ceramics, Textile products etc</span>\r\n<span style=\"color: #000000;\"><strong>Major Imports </strong> : Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Major trading partners </strong> : USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, Thailand, Indonesia, Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Information Technology </strong> : Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:25:57','2015-09-21 11:25:57','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(430,1,'2015-09-21 11:40:57','2015-09-21 11:40:57','<span style=\"color: #000000;\"><em><strong><span style=\"color: #008000;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n\r\n \r\n<table style=\"height: 4195px;\" width=\"777\">\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Government</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Geographical Location</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span>\r\n\r\n<span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Area/Land</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span>\r\n\r\n<span style=\"color: #000000;\">Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Borders</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),</span>\r\n\r\n<span style=\"color: #000000;\">East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Seasons</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Climate</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span>\r\n\r\n<span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Annual Rainfall</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Standard Time</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Population / Literacy</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Language</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n\r\n<span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Capital</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Administrative Units</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Major Cities</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span>\r\n\r\n<span style=\"color: #000000;\">Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">International Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sea Ports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Places of tourist interest</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span>\r\n\r\n<span style=\"color: #000000;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n\r\n<span style=\"color: #000000;\">safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n\r\n<span style=\"color: #000000;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n\r\n<span style=\"color: #000000;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n\r\n<span style=\"color: #000000;\">green tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Banking hour</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Business Hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span>\r\n\r\n<span style=\"color: #000000;\">Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Currency</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Exchange Rate</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Religion</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sectoral share of GDP</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">GDP/rate of growth</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Per Capita GDP/GNI</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span>\r\n\r\n<span style=\"color: #000000;\">Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span>\r\n\r\n<span style=\"color: #000000;\">Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,</span>\r\n\r\n<span style=\"color: #000000;\">Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n\r\n<em><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></em>\r\n<ul>\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:40:57','2015-09-21 11:40:57','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(431,1,'2015-09-21 11:44:04','2015-09-21 11:44:04','<span style=\"color: #000000;\"><em><strong><span style=\"color: #008000;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n\r\n \r\n<table style=\"height: 4195px;\" width=\"777\">\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Geographical Location</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span><span style=\"color: #000000;\">Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Borders</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),</span><span style=\"color: #000000;\">East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Population / Literacy</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Capital</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Major Cities</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Places of tourist interest</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span><span style=\"color: #000000;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n<span style=\"color: #000000;\">safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n<span style=\"color: #000000;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n<span style=\"color: #000000;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n<span style=\"color: #000000;\">green tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span><span style=\"color: #000000;\">Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Exchange Rate</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sectoral share of GDP</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">GDP/rate of growth</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span><span style=\"color: #000000;\">Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span><span style=\"color: #000000;\">Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,</span><span style=\"color: #000000;\">Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n\r\n<em><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></em>\r\n<ul>\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:44:04','2015-09-21 11:44:04','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(432,1,'2015-09-21 11:45:25','2015-09-21 11:45:25','<span style=\"color: #000000;\"><em><strong><span style=\"color: #008000;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span>\r\n\r\n \r\n<table style=\"height: 4195px;\" width=\"777\">\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Geographical Location</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span>\r\n</td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. </span><span style=\"color: #000000;\">Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Borders</span>\r\n</td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),</span><span style=\"color: #000000;\">East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Population / Literacy</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Capital</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Major Cities</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Places of tourist interest</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach</span><span style=\"color: #000000;\">at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra</span>\r\n<span style=\"color: #000000;\">safari park, Sitakund echo park at Chittagong, century old historical</span>\r\n<span style=\"color: #000000;\">sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the</span>\r\n<span style=\"color: #000000;\">home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash</span>\r\n<span style=\"color: #000000;\">green tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,</span><span style=\"color: #000000;\">Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Exchange Rate</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sectoral share of GDP</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">GDP/rate of growth</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and</span><span style=\"color: #000000;\">Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,</span><span style=\"color: #000000;\">Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,</span><span style=\"color: #000000;\">Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n\r\n<em><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></em>\r\n<ul>\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:45:25','2015-09-21 11:45:25','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(433,1,'2015-09-21 11:48:05','2015-09-21 11:48:05','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #008000;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n<p style=\"text-align: justify;\"></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Government</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Geographical Location</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span>\r\n\r\n<span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Area/Land</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Borders</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Seasons</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Climate</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span>\r\n\r\n<span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Annual Rainfall</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Standard Time</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Population / Literacy</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Language</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n\r\n<span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Capital</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Administrative Units</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Major Cities</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span>\r\n\r\n<span style=\"color: #000000;\">Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">International Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sea Ports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Places of tourist interest</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beachat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajrasafari park, Sitakund echo park at Chittagong, century old historicalsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash green tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Banking hour</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Business Hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Currency</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Exchange Rate</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Religion</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sectoral share of GDP</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">GDP/rate of growth</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Per Capita GDP/GNI</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,</span>\r\n\r\n<span style=\"color: #000000;\">Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:48:05','2015-09-21 11:48:05','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(434,1,'2015-09-21 11:49:13','2015-09-21 11:49:13','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #008000;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Government</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Geographical Location</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span>\r\n\r\n<span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Area/Land</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Borders</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Seasons</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Climate</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span>\r\n\r\n<span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Annual Rainfall</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Standard Time</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Population / Literacy</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">145 million / 60%</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Language</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n\r\n<span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Capital</span><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span><span style=\"color: #000000;\">Administrative Units</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Major Cities</span><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span><span style=\"color: #000000;\">Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span>\r\n\r\n<span style=\"color: #000000;\">Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">International Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Sea Ports</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Places of tourist interest</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beachat Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajrasafari park, Sitakund echo park at Chittagong, century old historicalsites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lash green tea gargens of Sylhet, riverine life etc.</span><span style=\"color: #000000;\">Banking hour</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Business Hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span><span style=\"color: #000000;\">Currency</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Exchange Rate</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Religion</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Sectoral share of GDP</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">GDP/rate of growth</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Per Capita GDP/GNI</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">US$1,314 (2015)</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Principal Industries</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Principal Crops</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Annual Export / Import</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Major Exports</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span><span style=\"color: #000000;\">Major Imports</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Major trading partners</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,</span>\r\n\r\n<span style=\"color: #000000;\">Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"><strong>Information Technology </strong></span>\r\n\r\n<span style=\"color: #000000;\"> </span><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:49:13','2015-09-21 11:49:13','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(435,1,'2015-09-21 11:51:54','2015-09-21 11:51:54','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #339966;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Government</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Geographical Location</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span>\r\n\r\n<span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Area/Land</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Borders</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Seasons</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Climate</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span>\r\n\r\n<span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Annual Rainfall</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Standard Time</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Population / Literacy</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Language</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span>\r\n\r\n<span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Capital</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Administrative Units</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Major Cities</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span>\r\n\r\n<span style=\"color: #000000;\">Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">International Airports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sea Ports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"> \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<span style=\"color: #000000;\">Places of tourist interest</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra safari park, Sitakund echo park at Chittagong, century old historical sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lashgreen tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Banking hour</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Business Hours</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Currency</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Exchange Rate</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Religion</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sectoral share of GDP</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">GDP/rate of growth</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Per Capita GDP/GNI</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,Saudi Arabia and UAE</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:51:54','2015-09-21 11:51:54','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(436,1,'2015-09-21 11:52:43','2015-09-21 11:52:43','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #339966;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Geographical Location</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Borders</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Population / Literacy</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Capital</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Major Cities</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Places of tourist interest</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra safari park, Sitakund echo park at Chittagong, century old historical sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lashgreen tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Exchange Rate</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sectoral share of GDP</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">GDP/rate of growth</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:52:43','2015-09-21 11:52:43','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(437,1,'2015-09-21 11:53:10','2015-09-21 11:53:10','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #339966;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Official Name</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Geographical Location</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Borders</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Population / Literacy</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Capital</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Major Cities</span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"> \r\n\r\n<span style=\"color: #000000;\">Places of tourist interest</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra safari park, Sitakund echo park at Chittagong, century old historical sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lashgreen tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Exchange Rate</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Sectoral share of GDP</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">GDP/rate of growth</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:53:10','2015-09-21 11:53:10','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(438,1,'2015-09-21 11:54:37','2015-09-21 11:54:37','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #339966;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Official Name</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Geographical Location</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Borders</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Population / Literacy</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Capital</span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Major Cities</span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Places of tourist interest</span></strong>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra safari park, Sitakund echo park at Chittagong, century old historical sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lashgreen tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Exchange Rate</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sectoral share of GDP</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">GDP/rate of growth</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:54:37','2015-09-21 11:54:37','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(439,1,'2015-09-21 11:55:46','2015-09-21 11:55:46','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em><strong><span style=\"color: #339966;\">BANGLA</span><span style=\"color: #ff0000;\">DESH</span></strong></em></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\"><img class=\"aligncenter\" src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/flag.gif\" alt=\"flag\" width=\"138\" height=\"130\" /></a></span></p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Official Name</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">The People’s Republic of Bangladesh</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Government</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Parliamentary form of government, headed by Prime Minister</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Geographical Location</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Latitude between 20o34\' and 26o38\' North</span><span style=\"color: #000000;\">Longitude between 88o01\' and 92o41\' East</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Area/Land</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">147,570 sq. km. mostly alluvial fertile plain. Territorial Waters 22.22 km. Economic Zone up to 370.40 km.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Borders</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">North - India (West Bengal & Meghalaya), West - India (West Bengal),East - India (Tripura & Assam) and Myanmar, South - Bay of Bengal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Seasons</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Summer, Monsoon, Autumn, Late Autumn, Winter & Spring.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Climate</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Winter 11o C - 20o C (October - February)</span><span style=\"color: #000000;\">Summer 21o C - 38o C (March - September).</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Annual Rainfall</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Varies from 110 cm to 340 cm at different areas.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Standard Time</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">GMT +6 hours</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Population / Literacy</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">145 million / 60%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Language</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Bangla (National Language) spoken by 95%, other dialects 5%,</span><span style=\"color: #000000;\">English is widely understood and spoken.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Capital</span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Area 1416 sq. km</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Administrative Units</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Division:6; Zila:64; Thana:507; Union:4484; Village:87319</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Major Cities</span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Khulna, Rajshahi, Barisal, Rangpur etc</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Airports</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Chittagong, Sylhet, Jessore, Rajshahi, Iswardi, Cox\'s Bazar,</span><span style=\"color: #000000;\">Syedpur and Barisal.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">International Airports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Dhaka, Sylhet and Chittagong</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sea Ports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Chittagong and Mongla</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Places of tourist interest</span></strong><span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Colourful tribal life of Hill Tracts, World\'s largest and longest sea beach at Cox\'s Bazar, Kuakata and Parky sea beach, Foy\'s Lake, Dulahajra safari park, Sitakund echo park at Chittagong, century old historical sites at Dhaka, Pharpur, Moinamati, Mohastangar, Sundarban the home of Royal Bengal Tiger and world\'s largest mangrove ferest, lashgreen tea gargens of Sylhet, riverine life etc.</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Banking hour</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Sunday- Thursday (10:00 am – 4:00 pm)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Business Hours</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Government Office Hours : 9.00 a.m. to 5.00 p.m. Sunday-Thursday,Friday & Saturday closed. Some Private business houses work on Saturday</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Currency</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Taka, having 1000, 500, 100, 50, 20, 10, 5, 2 & 1 in Notes; 5, 2 & 1 in Coins.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Exchange Rate</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Floating Exchange Rate : US$ 1 = Taka 68.00, Euro 1.00=Tk 93.00</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Religion</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">Muslims - 86.6%, Hindus - 12.1%, Buddhists - 0.6%, Christians - 0.4% and others 0.3%</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Sectoral share of GDP</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">21.91% Agriculture, 28.44% Industry, 49.65% Service.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">GDP/rate of growth</span></strong><span style=\"color: #000000;\"> </span></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$100 billion /6.12% (2013-14)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"160\"><strong><span style=\"color: #000000;\">Per Capita GDP/GNI</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td colspan=\"2\" width=\"478\"><span style=\"color: #000000;\">US$1,314 (2015)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Principal Industries</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Tea, Ceramics, Cement, Leather, Jute, Textiles, Electric and Electronics, Medicine, Fishing.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Principal Crops</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Rice, Jute, Tea, Wheat, Sugarcane, Pulses, Mustard, Potato, Vegetables.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Annual Export / Import</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">US$30.2 billion / US$ 34.08 billion (2013-2014)</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major Exports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Garments, Knitwear, Frozen Foods (Shrimps), Jute & Jute products,Leather & Leather products, Tea, Ceramics, Textile products etc</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major Imports</span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Oil, edible oil, petroleum product, wheat, seeds, fertilizer, yarn etc.</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><strong><span style=\"color: #000000;\">Major trading partners</span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span><span style=\"color: #000000;\"> </span></strong></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">USA, EU countries, China, India, Pakistan, Japan, South Korea, Canada, Australia, Malaysia, Hong Kong, Taiwan, hailand, Indonesia,Saudi Arabia and UAE</span><span style=\"color: #000000;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"161\"><span style=\"color: #000000;\"><strong>Information Technology </strong></span><span style=\"color: #000000;\"> </span></td>\r\n<td width=\"478\"><span style=\"color: #000000;\">Country Domain: .bd ; Internet Penetration: 4.46 crores (29% of population)Mobile Users: 12 crores, 37 lakhs (March 2015), Mobile Penetration: 80% of the population</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>Global Ranks of Bangladesh</strong></span></p>\r\n\r\n<ul style=\"text-align: justify;\">\r\n <li><span style=\"color: #000000;\">8th largest country in the world in terms of population</span></li>\r\n <li><span style=\"color: #000000;\">4th largest Muslim country in the world in terms of population and 3rd largest Muslim majority country</span></li>\r\n <li><span style=\"color: #000000;\">7<sup>th</sup> most densely populated country and the most densely populated country in the world having more than 10 million populations</span></li>\r\n <li><span style=\"color: #000000;\">Situated on the Ganges Delta, the largest delta in the world and also the largest wetland in the world</span></li>\r\n <li><span style=\"color: #000000;\">Cox’s Bazaar is the longest natural sandy sea beach in world</span></li>\r\n <li><span style=\"color: #000000;\">2nd largest garments exporter in the world</span></li>\r\n <li><span style=\"color: #000000;\">Largest producer of Jute (2nd largely grown vegetable fiber in the world)</span></li>\r\n <li><span style=\"color: #000000;\">Sundarbans (hosted by both Bangladesh and India) has the largest mangrove forest in the world</span></li>\r\n</ul>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">(Source: Bangladesh government website, Ministry of Finance, Bangladesh and Bangladesh Economic Review)</span></p>','About Bangladesh','','inherit','open','open','','25-revision-v1','','','2015-09-21 11:55:46','2015-09-21 11:55:46','',25,'http://cems-foodagro.com/25-revision-v1/',0,'revision','',0),(440,1,'2015-09-21 12:31:41','2015-09-21 12:31:41','','CEMS-Global Expo Form','','inherit','open','open','','cems-global-expo-form','','','2015-09-21 12:31:41','2015-09-21 12:31:41','',47,'http://cems-foodagro.com/wp-content/uploads/2015/05/CEMS-Global-Expo-Form.pdf',0,'attachment','application/pdf',0),(441,1,'2015-09-21 12:31:54','2015-09-21 12:31:54','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/CEMS-Global-Expo-Form.pdf\">CEMS-Global Expo Applic Form</a>','Expo Application Form','','inherit','open','open','','47-autosave-v1','','','2015-09-21 12:31:54','2015-09-21 12:31:54','',47,'http://cems-foodagro.com/47-autosave-v1/',0,'revision','',0),(442,1,'2015-09-21 12:32:02','2015-09-21 12:32:02','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/CEMS-Global-Expo-Form.pdf\">Expo Application Form</a>','Expo Application Form','','inherit','open','open','','47-revision-v1','','','2015-09-21 12:32:02','2015-09-21 12:32:02','',47,'http://cems-foodagro.com/47-revision-v1/',0,'revision','',0),(443,1,'2015-09-21 12:33:42','2015-09-21 12:33:42','<h3><a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/CEMS-Global-Expo-Form.pdf\" target=\"_blank\">Expo Application Form</a></h3>','Expo Application Form','','inherit','open','open','','47-revision-v1','','','2015-09-21 12:33:42','2015-09-21 12:33:42','',47,'http://cems-foodagro.com/47-revision-v1/',0,'revision','',0),(444,1,'2015-09-22 05:02:36','2015-09-22 05:02:36','<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>Presents\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone size-large wp-image-239\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/dzKkDFZ29Pc\" frameborder=\"0\" allowfullscreen></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-09-22 05:02:36','2015-09-22 05:02:36','',5,'http://cems-foodagro.com/5-revision-v1/',0,'revision','',0),(445,1,'2015-09-22 06:49:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2015-09-22 06:49:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=445',0,'ngg_pictures','',0),(446,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/?p=446',0,'ngg_pictures','',0),(447,1,'2015-09-22 10:44:55','2015-09-22 10:44:55','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><em><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO-2015’</strong></em> </span>will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Food Technologist, Owners from the below industries,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Association/Bakeries/Bakery & Confectionery Manufacturers/Catering Management/Chefs/Clubs and Resorts/Common public/Convenience Retailers/Food Catering/Food marts/Food Manufacturers/Food Technologists/Foodservice Equipment/High rank officers from government sector etc/Hotel & Resort Management/Hotel Supplies Dealers/Convenience Retailers Hypermarkets/Decision and policy makers of the industry/Departmental Stores/Departmental Stores Managers/Dieticians/Electronic and print media/Exporter/F & B Importers & Distributors/Fast Food Chains/Fast Food Outlets/Food Beverage services providers/Financial Company/Hypermarkets/Importers, Distributors, Wholesalers and Retailers/Leisure & Entertainment Staff/Manufacturer/Merchants/Nutritionists/Packaging and Distribution Centers/Policy makers/Restaurant Management/Sales and marketing department of the food industry/Grocery and Convenience Stores/Supply Chain Distributors/Airline etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em> </em></span></p>','Profile of Visitors','','inherit','open','open','','41-revision-v1','','','2015-09-22 10:44:55','2015-09-22 10:44:55','',41,'http://cems-foodagro.com/41-revision-v1/',0,'revision','',0),(449,1,'2015-10-01 10:02:53','2015-10-01 10:02:53','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 2591 – 753</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 2410 5201 ~ 4 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 2410 5205</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><b><i><span style=\"text-decoration: underline;\">Corporate Office for China :</span></i></b></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\"><img class=\"alignnone size-full wp-image-60\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\" alt=\"cems china\" width=\"100\" height=\"35\" /></a>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"><b>CEMS China Co., Ltd.</b></span>\r\n<span style=\"color: #000000;\"><b>Shanghai, China</b></span>\r\n\r\n</div>\r\n<span style=\"color: #000000;\">Tel : +86 - 21 - 50492570 ~ 73</span>\r\n<span style=\"color: #000000;\">Fax : +86 - 21 – 50492575</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a href=\"mailto:cems@cemschina.cn\">cems@cemschina.cn</a> </span>\r\n<span style=\"color: #000000;\"> Web : </span><a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemschina.cn\">www.cemschina.cn</a>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon……………</span>.\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-10-01 10:02:53','2015-10-01 10:02:53','',44,'http://cems-foodagro.com/44-revision-v1/',0,'revision','',0),(450,1,'2015-10-03 05:52:51','2015-10-03 05:52:51','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone wp-image-239 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/dzKkDFZ29Pc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span>\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/Swad-Musthead.png\" alt=\"Swad-Musthead\" width=\"248\" height=\"113\" /></a></p>\r\n[clear]','Home','','inherit','open','open','','5-revision-v1','','','2015-10-03 05:52:51','2015-10-03 05:52:51','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(451,1,'2015-10-03 05:55:22','2015-10-03 05:55:22','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20.jpg\"><img class=\"alignnone wp-image-239 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-BBoard-S-50-X-20-1024x410.jpg\" alt=\"Food-Agro--BBoard-S---50\'--X--20\'\" width=\"920\" height=\"368\" /></a>\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/dzKkDFZ29Pc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2015-10-03 05:55:22','2015-10-03 05:55:22','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(452,1,'2015-10-03 06:00:59','2015-10-03 06:00:59','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2015</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><strong><span style=\"color: #000000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><span style=\"color: #000000;\">.</span> </strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><b>26~28 November, 2015.</b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-10-03 06:00:59','2015-10-03 06:00:59','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(453,1,'2015-10-03 06:01:07','2015-10-03 06:01:07','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2015</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><strong><span style=\"color: #000000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><span style=\"color: #000000;\">.</span> </strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><b>26~28 November, 2015.</b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-10-03 06:01:07','2015-10-03 06:01:07','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(454,1,'2015-10-03 06:39:07','2015-10-03 06:39:07','<h3><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/CEMS-Global-Expo-Form.pdf\" target=\"_blank\">Expo Application Form</a></h3>','Expo Application Form','','inherit','open','open','','47-revision-v1','','','2015-10-03 06:39:07','2015-10-03 06:39:07','',47,'http://cems-foodagro.com/foodagrobd/47-revision-v1/',0,'revision','',0),(455,1,'2015-10-03 06:46:40','2015-10-03 06:46:40','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><b><i><span style=\"text-decoration: underline;\">Corporate Office for China :</span></i></b></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\"><img class=\"alignnone size-full wp-image-60\" src=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-china.jpg\" alt=\"cems china\" width=\"100\" height=\"35\" /></a>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"><b>CEMS China Co., Ltd.</b></span>\r\n<span style=\"color: #000000;\"><b>Shanghai, China</b></span>\r\n\r\n</div>\r\n<span style=\"color: #000000;\">Tel : +86 - 21 - 50492570 ~ 73</span>\r\n<span style=\"color: #000000;\">Fax : +86 - 21 – 50492575</span>\r\n<span style=\"color: #000000;\"> Mail : <a href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a href=\"mailto:cems@cemschina.cn\">cems@cemschina.cn</a> </span>\r\n<span style=\"color: #000000;\"> Web : </span><a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a href=\"http://www.cemschina.cn\">www.cemschina.cn</a>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-10-03 06:46:40','2015-10-03 06:46:40','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(456,1,'2015-10-07 11:34:16','2015-10-07 11:34:16','','Food-Agro-Partners-03','','inherit','open','open','','food-agro-partners-03','','','2015-10-07 11:34:16','2015-10-07 11:34:16','',5,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-Partners-03.png',0,'attachment','image/png',0),(458,1,'2015-10-22 04:29:35','2015-10-22 04:29:35','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2016</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><strong><span style=\"color: #000000;\"><i>The biggest 3-day International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><span style=\"color: #000000;\">.</span> </strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong> <b><span class=\"aBn\" tabindex=\"0\" data-term=\"goog_1220189786\"><span class=\"aQJ\">23 - 26 March 2016</span></span></b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-10-22 04:29:35','2015-10-22 04:29:35','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(459,1,'2015-10-23 05:46:58','2015-10-23 05:46:58','','Food-Agro-FB','','inherit','open','open','','food-agro-fb','','','2015-10-23 05:46:58','2015-10-23 05:46:58','',5,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg',0,'attachment','image/jpeg',0),(460,1,'2015-10-23 05:47:31','2015-10-23 05:47:31','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/dzKkDFZ29Pc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2015[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2015[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2015-10-23 05:47:31','2015-10-23 05:47:31','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(461,1,'2015-10-24 11:38:02','2015-10-24 11:38:02','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">`CEMS Global’ brings to you <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ scheduled to be held from 23 - 26 March 2016, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2015-10-24 11:38:02','2015-10-24 11:38:02','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(462,1,'2015-10-24 11:39:13','2015-10-24 11:39:13','<p style=\"text-align: justify;\"><span style=\"color: #339966;\"><em><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\">`CEMS Global’ brings to you <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ scheduled to be held from <strong>23 - 26 March 2016</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></em></p>\r\n<em><span style=\"color: #000000;\"> Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></em>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></em></p>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></em></p>','Highlights','','inherit','open','open','','19-revision-v1','','','2015-10-24 11:39:13','2015-10-24 11:39:13','',19,'http://cems-foodagro.com/foodagrobd/19-revision-v1/',0,'revision','',0),(463,1,'2015-10-24 11:39:43','2015-10-24 11:39:43','<p style=\"text-align: justify;\"><span style=\"color: #000000;\">‘<em><strong>FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2016’</strong></em> will be a perfect platform for Area Manager / GM / Operation Manager / Owner / CEO / President / Vice President, F&B Manager / Banqueting Manager, Housekeeping Manager / Public Relation Manager / Marketing Manager / Financial Manager, Architect / Engineer / Interior Design, Ambassador -Trade Attaché, Head Waiters, Executive Chef / Pastry Chef, Hotel / Resort / Furnished Apartment, Restaurant / Café, Bakery / Pastry, Hospital / Healthcare, Supermarket, Architect / Engineer / Contractors / Interior Design / Consultant, Supplier (Hospitality and Foodservice Industry), Financial Company, Association / Tourism Board / Governmental Institutions / Chamber of Commerce / Embassy / Ministry, Events Management / Procurement / Communication / Public Relation Agency / Advertising Agency / Airline, etc.</span></p>','Focus','','inherit','open','open','','22-revision-v1','','','2015-10-24 11:39:43','2015-10-24 11:39:43','',22,'http://cems-foodagro.com/foodagrobd/22-revision-v1/',0,'revision','',0),(464,1,'2015-10-24 11:40:13','2015-10-24 11:40:13','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><em><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO-2016’</strong></em> </span>will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Food Technologist, Owners from the below industries,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Association/Bakeries/Bakery & Confectionery Manufacturers/Catering Management/Chefs/Clubs and Resorts/Common public/Convenience Retailers/Food Catering/Food marts/Food Manufacturers/Food Technologists/Foodservice Equipment/High rank officers from government sector etc/Hotel & Resort Management/Hotel Supplies Dealers/Convenience Retailers Hypermarkets/Decision and policy makers of the industry/Departmental Stores/Departmental Stores Managers/Dieticians/Electronic and print media/Exporter/F & B Importers & Distributors/Fast Food Chains/Fast Food Outlets/Food Beverage services providers/Financial Company/Hypermarkets/Importers, Distributors, Wholesalers and Retailers/Leisure & Entertainment Staff/Manufacturer/Merchants/Nutritionists/Packaging and Distribution Centers/Policy makers/Restaurant Management/Sales and marketing department of the food industry/Grocery and Convenience Stores/Supply Chain Distributors/Airline etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em> </em></span></p>','Profile of Visitors','','inherit','open','open','','41-revision-v1','','','2015-10-24 11:40:13','2015-10-24 11:40:13','',41,'http://cems-foodagro.com/foodagrobd/41-revision-v1/',0,'revision','',0),(465,1,'2015-10-29 09:04:03','2015-10-29 09:04:03','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">`CEMS Global’ brings to you <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ scheduled to be held from <strong>23 - 26 March 2016</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD PRO AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2015-10-29 09:04:03','2015-10-29 09:04:03','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(467,1,'2015-11-01 04:42:49','2015-11-01 04:42:49','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/wp-content/uploads/2015/05/cems-india.jpg\"><span style=\"color: #000000;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a></span></a>\r\n<div><em><span style=\"color: #000000;\"><b>Conference & Exhibition Management Services India Pvt Ltd. [CEMS INDIA]</b></span></em>\r\n<em><span style=\"color: #000000;\"><b>New Delhi, India</b></span></em></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-11-01 04:42:49','2015-11-01 04:42:49','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(468,1,'2015-11-02 09:20:44','2015-11-02 09:20:44','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Food Pro And Agro Bangladesh International Expo 2015 Video [/big_header]\r\n<p style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/dzKkDFZ29Pc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2015-11-02 09:20:44','2015-11-02 09:20:44','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(470,1,'2015-11-17 09:28:33','2015-11-17 09:28:33','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n \r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://banglaradio.com/shadhin/\" target=\"_blank\">RadioShadin</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2015-11-17 09:28:33','2015-11-17 09:28:33','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(472,1,'2015-12-07 06:24:40','2015-12-07 06:24:40','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +880 – 2 – 881 8111 ~ 5, 9890779</span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2015-12-07 06:24:40','2015-12-07 06:24:40','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(474,1,'2015-12-29 08:28:10','2015-12-29 08:28:10','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food Pro & Agro Bangladesh International Expo 2016</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><strong><span style=\"color: #000000;\"><i>The biggest 4-days International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><span style=\"color: #000000;\">.</span> </strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong> <b><span class=\"aBn\" tabindex=\"0\" data-term=\"goog_1220189786\"><span class=\"aQJ\">23 - 26 March 2016</span></span></b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2015-12-29 08:28:10','2015-12-29 08:28:10','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(475,1,'2016-01-12 04:48:04','2016-01-12 04:48:04','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n \r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu7\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-01-12 04:48:04','2016-01-12 04:48:04','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(476,1,'2016-01-12 05:01:04','2016-01-12 05:01:04','','Food-Agro-Partners-02','','inherit','open','open','','food-agro-partners-02-2','','','2016-01-12 05:01:04','2016-01-12 05:01:04','',5,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-Partners-021.png',0,'attachment','image/png',0),(477,1,'2016-01-12 05:05:17','2016-01-12 05:05:17','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n \r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"#\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-01-12 05:05:17','2016-01-12 05:05:17','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(478,1,'2016-01-12 05:50:24','2016-01-12 05:50:24','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n \r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://market-edge.net/#/home\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://aamartech.com/\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-01-12 05:50:24','2016-01-12 05:50:24','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(479,1,'2016-01-12 05:51:25','2016-01-12 05:51:25','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n \r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-01-12 05:51:25','2016-01-12 05:51:25','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(480,1,'2016-01-24 07:42:28','2016-01-24 07:42:28','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +<span class=\"style4 \">880 ~2~9872750 , 9890779 , 9885726</span></span>\r\n<span style=\"color: #000000;\"> Fax : +880 – 2 – 9888816, 8811788</span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2016-01-24 07:42:28','2016-01-24 07:42:28','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(482,1,'2016-01-28 07:13:00','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-01-28 07:13:00','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=482',0,'ngg_pictures','',0),(483,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=483',0,'ngg_pictures','',0),(484,1,'2016-01-28 07:13:01','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-01-28 07:13:01','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=484',0,'ngg_pictures','',0),(486,1,'2016-01-28 07:15:34','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-01-28 07:15:34','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=486',0,'ngg_pictures','',0),(487,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=487',0,'ngg_pictures','',0),(488,1,'2016-01-28 07:17:22','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-01-28 07:17:22','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=488',0,'ngg_pictures','',0),(489,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=489',0,'ngg_pictures','',0),(490,1,'2016-01-31 09:54:10','2016-01-31 09:54:10','<p class=\"style2\">Dear Visitors ,</p>\r\n<p class=\"style2\">Thanks for visiting our website.\r\nWe have stopped the online registration from 22 March 2016.</p>\r\n<p class=\"style2\">Pls visit the exhibition center and get registered by giving your visiting card.</p>','online visitor registration','','publish','open','open','','online-visitor-registration','','','2016-03-22 15:47:01','2016-03-22 15:47:01','',0,'http://cems-foodagro.com/foodagrobd/?page_id=490',0,'page','',0),(491,1,'2016-01-31 09:54:10','2016-01-31 09:54:10','<iframe style=\"border: none;\" src=\"http://www.emailmeform.com/builder/embed/Sdzhdo1NAxge95Olr\" width=\"100%\" height=\"1401\" frameborder=\"0\" scrolling=\"no\"><a href=\"http://www.emailmeform.com/builder/embed/Sdzhdo1NAxge95Olr\">Fill out form.</a></iframe>','online visitor registration','','inherit','open','open','','490-revision-v1','','','2016-01-31 09:54:10','2016-01-31 09:54:10','',490,'http://cems-foodagro.com/foodagrobd/490-revision-v1/',0,'revision','',0),(492,1,'2016-01-31 09:55:40','2016-01-31 09:55:40','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB.jpg\"><img class=\"alignnone wp-image-459 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n \r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-01-31 09:55:40','2016-01-31 09:55:40','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(493,1,'2016-01-31 11:57:54','2016-01-31 11:57:54','<iframe style=\"border: none;\" src=\"http://www.emailmeform.com/builder/embed/Sdzhdo1NAxge95Olr\" width=\"100%\" height=\"1623\" frameborder=\"0\" scrolling=\"no\"><a href=\"http://www.emailmeform.com/builder/embed/Sdzhdo1NAxge95Olr\">Fill out form.</a></iframe>','online visitor registration','','inherit','open','open','','490-revision-v1','','','2016-01-31 11:57:54','2016-01-31 11:57:54','',490,'http://cems-foodagro.com/foodagrobd/490-revision-v1/',0,'revision','',0),(495,1,'2016-02-18 10:16:36','2016-02-18 10:16:36','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2016-02-18 10:16:36','2016-02-18 10:16:36','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(496,1,'2016-02-23 07:02:53','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-23 07:02:53','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=496',0,'ngg_pictures','',0),(498,1,'2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=498',0,'ngg_pictures','',0),(500,1,'2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=500',0,'ngg_pictures','',0),(502,1,'2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=502',0,'ngg_pictures','',0),(504,1,'2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-25 06:50:40','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=504',0,'ngg_pictures','',0),(505,1,'2016-02-27 04:23:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:23:16','2016-02-27 04:23:16','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=505',0,'ngg_pictures','',0),(506,1,'2016-02-25 06:55:41','2016-02-25 06:55:41','','Food-Agro-FB','','inherit','open','open','','food-agro-fb-2','','','2016-02-25 06:55:41','2016-02-25 06:55:41','',5,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg',0,'attachment','image/jpeg',0),(507,1,'2016-02-25 06:56:20','2016-02-25 06:56:20','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 \" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-300x113.jpg\" alt=\"\" width=\"683\" height=\"257\" /></a>\r\n\r\n \r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-02-25 06:56:20','2016-02-25 06:56:20','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(508,1,'2016-02-25 06:57:22','2016-02-25 06:57:22','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-02-25 06:57:22','2016-02-25 06:57:22','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(509,1,'2016-02-25 07:15:20','2016-02-25 07:15:20','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\">\r\n<p align=\"left\"><span style=\"color: #000000;\"><strong><b>Food & Agro Bangladesh International Expo 2016</b></strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><strong><span style=\"color: #000000;\"><i>The biggest 4-days International Exhibition For Food Products, Beverage Products, Processing, Packaging & Agriculture Equipment</i></span><span style=\"color: #000000;\">.</span> </strong></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong> <b><span class=\"aBn\" tabindex=\"0\" data-term=\"goog_1220189786\"><span class=\"aQJ\">23 - 26 March 2016</span></span></b></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Bangabandhu International Conference Centre\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2016-02-25 07:15:20','2016-02-25 07:15:20','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(510,1,'2016-02-25 07:16:41','2016-02-25 07:16:41','<p style=\"text-align: justify;\"><span style=\"color: #339966;\"><em><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></em></span></p>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\">`CEMS Global’ brings to you <strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ scheduled to be held from <strong>23 - 26 March 2016</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></em></p>\r\n<em><span style=\"color: #000000;\"> Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></em>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\"><strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></em></p>\r\n<p style=\"text-align: justify;\"><em><span style=\"color: #000000;\"><strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></em></p>','Highlights','','inherit','open','open','','19-revision-v1','','','2016-02-25 07:16:41','2016-02-25 07:16:41','',19,'http://cems-foodagro.com/foodagrobd/19-revision-v1/',0,'revision','',0),(511,1,'2016-02-25 07:18:52','2016-02-25 07:18:52','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">`CEMS Global’ brings to you <strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ scheduled to be held from <strong>23 - 26 March 2016</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provides ample opportunity to the consumers of housing to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO - 2016</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2016</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2016-02-25 07:18:52','2016-02-25 07:18:52','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(512,1,'2016-02-25 07:20:20','2016-02-25 07:20:20','<p style=\"text-align: justify;\"><span style=\"color: #000000;\">‘<em><strong>FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2016’</strong></em> will be a perfect platform for Area Manager / GM / Operation Manager / Owner / CEO / President / Vice President, F&B Manager / Banqueting Manager, Housekeeping Manager / Public Relation Manager / Marketing Manager / Financial Manager, Architect / Engineer / Interior Design, Ambassador -Trade Attaché, Head Waiters, Executive Chef / Pastry Chef, Hotel / Resort / Furnished Apartment, Restaurant / Café, Bakery / Pastry, Hospital / Healthcare, Supermarket, Architect / Engineer / Contractors / Interior Design / Consultant, Supplier (Hospitality and Foodservice Industry), Financial Company, Association / Tourism Board / Governmental Institutions / Chamber of Commerce / Embassy / Ministry, Events Management / Procurement / Communication / Public Relation Agency / Advertising Agency / Airline, etc.</span></p>','Focus','','inherit','open','open','','22-revision-v1','','','2016-02-25 07:20:20','2016-02-25 07:20:20','',22,'http://cems-foodagro.com/foodagrobd/22-revision-v1/',0,'revision','',0),(513,1,'2016-02-25 07:21:08','2016-02-25 07:21:08','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Food Exhibits: </b>Food & Beverage Featuring / Halal Food / Drink , Juice Processing Equipment / Chilled & Frozen Foods / Food Ingredients: Aromas / Flavors & Fragrances / Food Technology / Herbal & Medicinal Plants Exporters , Importer, Traders / Herbal Foods Products / Bakery, Snaks, Rice, Tea, Coffee, Flour, Sugar, Salt, Sweet Manufacturers / Chain Shop / Fast Food Chains / Food Processing and Packaging / Manufacturers and Distributors of Farm Machinery / Hospitality Services and Retails & Franchise / Organic Agricultural Products / Seafood: Fresh Seafood Products / Display, Retails Equipment / Individuals, Companies, Organizations associated with: Spices & Medicinal Plants / Animal Food & Health / Buffaloo Meat Products & Processing Technology / Government Departments / Inputs for Organic Agriculture / Equipments for Food and Agricultural Sectors / Institutional Catering Management etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Agro Bangladesh Exhibit</b><b>:</b> Agricultural Machinery and Technologies / Agriculture Seed Manufacturers, Importers / Agricultural Products Traders, Wholeseller/ Agro Chemical, Pesticides, Insecticides Manufacturers, Importers/Agricultural Cures / Organic Agriculture Sector / Animal Husbandry / Fisheries / Animal Husbandry Machinery / Animal Care and Veterinarian Services / Animal Breeding Equipments / Poultry and Poultry Equipment / Packaging and Equipments / Agriculture Chemistry Products / Tractors and Combines / Sub-Industry / Water and Irrigation Techniques / Greenhouse / Greenhouse Construction and Equipments / Fertilizers, Seed, Seedling, Sapling and Gardening / Biotechnology/Tissue Culture Technology/ Dairy Poultry & Live Stock/ Post Harvest Handling Equipment/ Soil Testing Equipment / Certification Companies/ Horticulture Processing Technology/ Plasticulture & Aquaculture / Aquaculture Technology / Workshop Tools & Equipments / Digital Temperature Controller & Data Logger / Refrigerated Van & Truck , Body Builders/ Garden Equipments / Ecological Agriculture Measuring and Recording Equipment / Cooling Pads & Heat Extractors/ Transporting / Manual Tools / Energy Sources / Banks & Insurance Services/Related Institutions and Companies / Related Sectoral Publications etc.</span></p>','Profile of Exhibits','','inherit','open','open','','38-revision-v1','','','2016-02-25 07:21:08','2016-02-25 07:21:08','',38,'http://cems-foodagro.com/foodagrobd/38-revision-v1/',0,'revision','',0),(515,1,'2016-02-27 04:28:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-27 04:28:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=515',0,'ngg_pictures','',0),(516,1,'2016-02-27 04:28:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:28:29','2016-02-27 04:28:29','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=516',0,'ngg_pictures','',0),(517,1,'2016-02-27 04:28:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-27 04:28:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=517',0,'ngg_pictures','',0),(518,1,'2016-02-27 04:28:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:28:30','2016-02-27 04:28:30','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=518',0,'ngg_pictures','',0),(519,1,'2016-02-27 04:28:31','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-02-27 04:28:31','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=519',0,'ngg_pictures','',0),(520,1,'2016-02-27 04:28:31','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-02-27 04:28:31','2016-02-27 04:28:31','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=520',0,'ngg_pictures','',0),(521,1,'2016-03-01 05:09:19','2016-03-01 05:09:19','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div><span style=\"color: #000000;\">Tel: 86-10-82842588</span></div>\r\n<div><span style=\"color: #000000;\">Fax: 86-10-84832956</span></div>\r\n<div><span style=\"color: #000000;\">Cell: 86 13811367205</span></div>\r\n<div><span style=\"color: #000000;\">E-mail: <span lang=\"EN-US\" style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></span></div>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2016-03-01 05:09:19','2016-03-01 05:09:19','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(523,1,'2016-03-06 11:38:47','2016-03-06 11:38:47','','associative','','inherit','open','open','','associative','','','2016-03-06 11:38:47','2016-03-06 11:38:47','',5,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg',0,'attachment','image/jpeg',0),(524,1,'2016-03-06 11:39:38','2016-03-06 11:39:38','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-06 11:39:38','2016-03-06 11:39:38','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(525,1,'2016-03-07 09:37:04','2016-03-07 09:37:04','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><em><strong>‘FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO-2016’</strong></em> </span>will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Food Technologist, Owners from the below industries,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Association/Bakeries/Bakery & Confectionery Manufacturers/Catering Management/Chefs/Clubs and Resorts/Common public/Convenience Retailers/Food Catering/Food marts/Food Manufacturers/Food Technologists/Foodservice Equipment/High rank officers from government sector etc/Hotel & Resort Management/Hotel Supplies Dealers/Convenience Retailers Hypermarkets/Decision and policy makers of the industry/Departmental Stores/Departmental Stores Managers/Dieticians/Electronic and print media/Exporter/F & B Importers & Distributors/Fast Food Chains/Fast Food Outlets/Food Beverage services providers/Financial Company/Hypermarkets/Importers, Distributors, Wholesalers and Retailers/Leisure & Entertainment Staff/Manufacturer/Merchants/Nutritionists/Packaging and Distribution Centers/Policy makers/Restaurant Management/Sales and marketing department of the food industry/Grocery and Convenience Stores/Supply Chain Distributors/Airline etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em> </em></span></p>','Profile of Visitors','','inherit','open','open','','41-revision-v1','','','2016-03-07 09:37:04','2016-03-07 09:37:04','',41,'http://cems-foodagro.com/foodagrobd/41-revision-v1/',0,'revision','',0); INSERT INTO `wp_posts` VALUES (526,1,'2016-03-12 06:00:31','2016-03-12 06:00:31','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n \r\n \r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div><span style=\"color: #000000;\">Tel: 86-10-82842588</span></div>\r\n<div><span style=\"color: #000000;\">Fax: 86-10-84832956</span></div>\r\n<div><span style=\"color: #000000;\">Cell: 86 13811367205</span></div>\r\n<div><span style=\"color: #000000;\">E-mail: <span lang=\"EN-US\" style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></span></div>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2016-03-12 06:00:31','2016-03-12 06:00:31','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(527,1,'2016-03-13 09:18:42','2016-03-13 09:18:42','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div><span style=\"color: #000000;\">Tel: 86-10-82842588</span></div>\r\n<div><span style=\"color: #000000;\">Fax: 86-10-84832956</span></div>\r\n<div><span style=\"color: #000000;\">Cell: 86 13811367205</span></div>\r\n<div><span style=\"color: #000000;\">E-mail: <span lang=\"EN-US\" style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></span></div>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2016-03-13 09:18:42','2016-03-13 09:18:42','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(528,1,'2016-03-13 09:19:32','2016-03-13 09:19:32','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n \r\n \r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div><span style=\"color: #000000;\">Tel: 86-10-82842588</span></div>\r\n<div><span style=\"color: #000000;\">Fax: 86-10-84832956</span></div>\r\n<div><span style=\"color: #000000;\">Cell: 86 13811367205</span></div>\r\n<div><span style=\"color: #000000;\">E-mail: <span lang=\"EN-US\" style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></span></div>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2016-03-13 09:19:32','2016-03-13 09:19:32','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(530,1,'2016-03-21 10:32:38','2016-03-21 10:32:38','','Beverage Partner Acme','','inherit','open','open','','beverage-partner-acme','','','2016-03-21 10:32:38','2016-03-21 10:32:38','',5,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png',0,'attachment','image/png',0),(531,1,'2016-03-21 10:32:58','2016-03-21 10:32:58','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\nBeverage Partner\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a>\r\n\r\n[clear]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 10:32:58','2016-03-21 10:32:58','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(532,1,'2016-03-21 10:33:43','2016-03-21 10:33:43','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<h2><strong>Beverage Partner</strong></h2>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a>\r\n\r\n[clear]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 10:33:43','2016-03-21 10:33:43','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(533,1,'2016-03-21 10:34:17','2016-03-21 10:34:17','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<h3><strong>Beverage Partner</strong></h3>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a>\r\n\r\n[clear]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 10:34:17','2016-03-21 10:34:17','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(534,1,'2016-03-21 10:34:55','2016-03-21 10:34:55','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<h4><strong>Beverage Partner</strong></h4>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a>\r\n\r\n[clear]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 10:34:55','2016-03-21 10:34:55','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(535,1,'2016-03-21 11:22:27','2016-03-21 11:22:27','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n<h4><strong>Beverage Partner</strong></h4>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a>\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n\r\n[clear]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 11:22:27','2016-03-21 11:22:27','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(536,1,'2016-03-21 11:23:07','2016-03-21 11:23:07','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a>\r\n<ul class=\"placemenu\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n[clear]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 11:23:07','2016-03-21 11:23:07','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(537,1,'2016-03-21 11:24:50','2016-03-21 11:24:50','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: left;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 11:24:50','2016-03-21 11:24:50','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(538,1,'2016-03-21 11:25:29','2016-03-21 11:25:29','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a>\r\n\r\n[big_header]Our Participants 2016[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: center;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-03-21 11:25:29','2016-03-21 11:25:29','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(539,1,'2016-03-22 09:32:10','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-03-22 09:32:10','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=539',0,'ngg_pictures','',0),(541,1,'2016-03-22 09:34:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-03-22 09:34:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=541',0,'ngg_pictures','',0),(542,1,'2016-03-22 09:34:30','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-03-22 09:34:30','2016-03-22 09:34:30','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=542',0,'ngg_pictures','',0),(543,1,'2016-03-22 15:30:35','2016-03-22 15:30:35','<h2 class=\"style2\">Online visitor registration is now closed. Please register on-site at the Exhibition, Thanks.</h2>','online visitor registration','','inherit','open','open','','490-revision-v1','','','2016-03-22 15:30:35','2016-03-22 15:30:35','',490,'http://cems-foodagro.com/foodagrobd/490-revision-v1/',0,'revision','',0),(544,1,'2016-03-22 15:46:30','2016-03-22 15:46:30','<p class=\"style2\">Dear Visitors ,</p>\n<p class=\"style2\">Thanks for visiting our website.\nWe have stopped the online registration from 22 Mar2016.</p>\n<p class=\"style2\">Pls visit the exhibition center and get registered by giving your visiting card.</p>','online visitor registration','','inherit','open','open','','490-autosave-v1','','','2016-03-22 15:46:30','2016-03-22 15:46:30','',490,'http://cems-foodagro.com/foodagrobd/490-autosave-v1/',0,'revision','',0),(545,1,'2016-03-22 15:33:26','2016-03-22 15:33:26','Dear Visitors ,\r\n\r\nThanks for visiting our website.\r\nOnline visitor registration is now closed.\r\nPlease register on-site at the Exhibition, Thanks','online visitor registration','','inherit','open','open','','490-revision-v1','','','2016-03-22 15:33:26','2016-03-22 15:33:26','',490,'http://cems-foodagro.com/foodagrobd/490-revision-v1/',0,'revision','',0),(546,1,'2016-03-22 15:45:11','2016-03-22 15:45:11','<p class=\"style2\">Dear Visitors ,</p>\r\n<p class=\"style2\">Thanks for visiting our website.\r\nWe have stopped the online registration from 4th June 2012.</p>\r\n<p class=\"style2\">Pls visit the exhibition center and get registered by giving your visiting card.</p>','online visitor registration','','inherit','open','open','','490-revision-v1','','','2016-03-22 15:45:11','2016-03-22 15:45:11','',490,'http://cems-foodagro.com/foodagrobd/490-revision-v1/',0,'revision','',0),(547,1,'2016-03-22 15:45:28','2016-03-22 15:45:28','<p class=\"style2\">Dear Visitors ,</p>\r\n<p class=\"style2\">Thanks for visiting our website.\r\nWe have stopped the online registration from 4th June 2016.</p>\r\n<p class=\"style2\">Pls visit the exhibition center and get registered by giving your visiting card.</p>','online visitor registration','','inherit','open','open','','490-revision-v1','','','2016-03-22 15:45:28','2016-03-22 15:45:28','',490,'http://cems-foodagro.com/foodagrobd/490-revision-v1/',0,'revision','',0),(548,1,'2016-03-22 15:46:55','2016-03-22 15:46:55','<p class=\"style2\">Dear Visitors ,</p>\r\n<p class=\"style2\">Thanks for visiting our website.\r\nWe have stopped the online registration from 22 March 2016.</p>\r\n<p class=\"style2\">Pls visit the exhibition center and get registered by giving your visiting card.</p>','online visitor registration','','inherit','open','open','','490-revision-v1','','','2016-03-22 15:46:55','2016-03-22 15:46:55','',490,'http://cems-foodagro.com/foodagrobd/490-revision-v1/',0,'revision','',0),(550,1,'2016-05-08 06:40:53','2016-05-08 06:40:53','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a><strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a-->\r\n\r\n[big_header]Our Participants 2017[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: center;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-05-08 06:40:53','2016-05-08 06:40:53','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(551,1,'2016-05-08 06:42:24','2016-05-08 06:42:24','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"--><--img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /--></a>\r\n<strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a-->\r\n\r\n[big_header]Our Participants 2017[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: center;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-05-08 06:42:24','2016-05-08 06:42:24','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(552,1,'2016-05-08 06:42:58','2016-05-08 06:42:58','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>\r\n<strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"><img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /></a-->\r\n\r\n[big_header]Our Participants 2017[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: center;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-05-08 06:42:58','2016-05-08 06:42:58','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(553,1,'2016-05-08 06:43:28','2016-05-08 06:43:28','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>\r\n<strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<!--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"--><!--img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /--></a-->\r\n\r\n[big_header]Our Participants 2017[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: center;\">[big_header]Our Partners 2016[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-05-08 06:43:28','2016-05-08 06:43:28','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(554,1,'2016-05-08 07:01:57','2016-05-08 07:01:57','p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ scheduled to be held from <strong> 6 ~ 9 April 2017</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2016-05-08 07:01:57','2016-05-08 07:01:57','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(555,1,'2016-05-08 07:03:28','2016-05-08 07:03:28','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ scheduled to be held from <strong> 6 ~ 9 April 2017</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2016-05-08 07:03:28','2016-05-08 07:03:28','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(556,1,'2016-05-08 07:05:16','2016-05-08 07:05:16','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from <strong> 6 ~ 9 April 2017</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2016-05-08 07:05:16','2016-05-08 07:05:16','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(557,1,'2016-05-08 07:06:54','2016-05-08 07:06:54','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Food Exhibits: </b>Food & Beverage Featuring - Halal Food & Drink <strong>|</strong> Juice Processing Equipment <strong>|</strong> Chilled & Frozen Foods <strong>|</strong> Food Ingredients - Aromas / Flavors & Fragrances <strong>|</strong> Food Technology <strong>|</strong> Herbal and Medicinal Plants Exporters , Importers & Traders <strong>|</strong> Herbal Foods Products <strong>|</strong> Bakeries, Snacks, Rice, Tea, Coffee, Flour, Sugar, Salt, Sweet Manufacturers & manufacturing Equipment <strong>|</strong> Chain Shops <strong>| </strong>Fast Food Chains <strong>|</strong> Food Processing and Packaging Equipment <strong>|</strong> Refrigeration Technologies <strong>|</strong> Manufacturers and Distributors of Farm Machinery <strong>|</strong> Hospitality Services, Retails & Franchises <strong>|</strong> Organic Agricultural Products<strong> |</strong> Seafood: Fresh Seafood Products / Displays, Retails Equipment / Individuals, Companies, Organizations associated with: Spices & Medicinal Plants <strong>|</strong> Animal Food & Health <strong>|</strong> Meat Products & Processing Equipment <strong>|</strong> Government Departments <strong>| </strong>Inputs for Organic Agriculture <strong>|</strong> Equipment for Food and Agricultural Sector <strong>|</strong> Institutional Catering Management etc.</span></p>\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Agro Bangladesh Exhibit</b><b>:</b> Agricultural Machinery and Technologies / Agriculture Seed Manufacturers, Importers / Agricultural Products Traders, Wholeseller/ Agro Chemical, Pesticides, Insecticides Manufacturers, Importers/Agricultural Cures / Organic Agriculture Sector / Animal Husbandry / Fisheries / Animal Husbandry Machinery / Animal Care and Veterinarian Services / Animal Breeding Equipments / Poultry and Poultry Equipment / Packaging and Equipments / Agriculture Chemistry Products / Tractors and Combines / Sub-Industry / Water and Irrigation Techniques / Greenhouse / Greenhouse Construction and Equipments / Fertilizers, Seed, Seedling, Sapling and Gardening / Biotechnology/Tissue Culture Technology/ Dairy Poultry & Live Stock/ Post Harvest Handling Equipment/ Soil Testing Equipment / Certification Companies/ Horticulture Processing Technology/ Plasticulture & Aquaculture / Aquaculture Technology / Workshop Tools & Equipments / Digital Temperature Controller & Data Logger / Refrigerated Van & Truck , Body Builders/ Garden Equipments / Ecological Agriculture Measuring and Recording Equipment / Cooling Pads & Heat Extractors/ Transporting / Manual Tools / Energy Sources / Banks & Insurance Services/Related Institutions and Companies / Related Sectoral Publications etc.</span></p>','Profile of Exhibits','','inherit','open','open','','38-autosave-v1','','','2016-05-08 07:06:54','2016-05-08 07:06:54','',38,'http://cems-foodagro.com/foodagrobd/38-autosave-v1/',0,'revision','',0),(558,1,'2016-05-08 07:07:22','2016-05-08 07:07:22','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Food Exhibits: </b>Food & Beverage Featuring - Halal Food & Drink <strong>|</strong> Juice Processing Equipment <strong>|</strong> Chilled & Frozen Foods <strong>|</strong> Food Ingredients - Aromas / Flavors & Fragrances <strong>|</strong> Food Technology <strong>|</strong> Herbal and Medicinal Plants Exporters , Importers & Traders <strong>|</strong> Herbal Foods Products <strong>|</strong> Bakeries, Snacks, Rice, Tea, Coffee, Flour, Sugar, Salt, Sweet Manufacturers & manufacturing Equipment <strong>|</strong> Chain Shops <strong>| </strong>Fast Food Chains <strong>|</strong> Food Processing and Packaging Equipment <strong>|</strong> Refrigeration Technologies <strong>|</strong> Manufacturers and Distributors of Farm Machinery <strong>|</strong> Hospitality Services, Retails & Franchises <strong>|</strong> Organic Agricultural Products<strong> |</strong> Seafood: Fresh Seafood Products / Displays, Retails Equipment / Individuals, Companies, Organizations associated with: Spices & Medicinal Plants <strong>|</strong> Animal Food & Health <strong>|</strong> Meat Products & Processing Equipment <strong>|</strong> Government Departments <strong>| </strong>Inputs for Organic Agriculture <strong>|</strong> Equipment for Food and Agricultural Sector <strong>|</strong> Institutional Catering Management etc.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>Agro Exhibit</b><b>:</b> Agricultural Machinery and Technologies <strong>|</strong> Agriculture Seed Processor Units<strong>|</strong> Agricultural Products Manufacturers, Importers, Traders, Wholesalers <strong>|</strong> Agro Chemical, Fertilizers, Pesticides, Insecticides, Manufacturers, Importers, Traders, Wholesalers <strong>|</strong> Agricultural Cures <strong>|</strong> Other Agriculture Chemistry Products <strong>|</strong> Organic Agriculture Sectors <strong>|</strong> Fisheries & Animal Husbandry Machineries , Animal Care and veterinary Services <strong>|</strong> Animal Breeding Equipment <strong>|</strong> Poultry and Poultry Equipment <strong>|</strong> Packaging Equipment & Packaging Materials <strong>|</strong> Tractors and Combines | Sub-Industry | Irrigation Techniques <strong>|</strong> Greenhouse Construction and Equipment <strong>|</strong> Seed, Seedling, Sapling and Gardening Service Providers <strong>|</strong> Gardening Equipment <strong>|</strong> Biotechnology & Tissue Culture Technology <strong>|</strong> Dairy, Poultry & Live Stock <strong>| </strong>Post Harvest Handling Equipment <strong>|</strong> Soil Testing Equipment <strong>|</strong> Certification Agencies <strong>|</strong> Horticulture Processing Technology<strong>|</strong> Plasticulture, Aquaculture process providers and equipment <strong>|</strong> Aquaculture Technology, Workshop Tools & Equipment <strong>|</strong> Digital Temperature Controller & Data Logger <strong>|</strong> Refrigeration Van , Truck sellers & Body Builders <strong>|</strong> Ecological Agriculture Measuring and Recording Equipment <strong>|</strong> Cooling Pads & Heat Extractors<strong>|</strong> Transportation service providers <strong>|</strong> Manual Tools <strong>|</strong> Alternative Energy Sources <strong>|</strong> Banking & Insurance Service providers <strong>|</strong> Agro Related Institutions and Companies <strong>|</strong> Related Sector Publications etc.</span></p>','Profile of Exhibits','','inherit','open','open','','38-revision-v1','','','2016-05-08 07:07:22','2016-05-08 07:07:22','',38,'http://cems-foodagro.com/foodagrobd/38-revision-v1/',0,'revision','',0),(559,1,'2016-05-08 07:08:25','2016-05-08 07:08:25','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><em><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ ’ </strong></em></span></span>will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Food Technologist, Owners from the below industries, Association<strong>|</strong> Bakeries<strong>|</strong> Bakery & Confectionery Manufacturers<strong>|</strong> Catering Management<strong>|</strong> Chefs<strong>|</strong> Clubs and Resorts<strong>|</strong> Common public<strong>|</strong> Convenience Retailers<strong>|</strong> Food Catering<strong>|</strong> Food marts<strong>|</strong> Food Manufacturers<strong>|</strong> Food Technologists<strong>|</strong> Foodservice Equipment<strong>|</strong> High rank officers from government sector etc<strong>|</strong> Hotel & Resort Management<strong>| </strong>Hotel Supplies Dealers<strong>|</strong> Convenience Retailers Hypermarkets<strong>|</strong> Decision and policy makers of the industry<strong>|</strong> Departmental Stores <strong>|</strong> Departmental Stores Managers <strong>| </strong>Dieticians <strong>|</strong> Electronic and print media<strong>|</strong> Exporter <strong>|</strong> F & B Importers & Distributors <strong>|</strong> Fast Food Chains <strong>|</strong> Fast Food Outlets <strong>|</strong> Food Beverage services providers <strong>|</strong> Financial Company <strong>|</strong>Hypermarkets <strong>|</strong> Importers, Distributors, Wholesalers and Retailers <strong>|</strong> Leisure & Entertainment Staff <strong>|</strong> Manufacturer <strong>|</strong> Merchants <strong>|</strong> Nutritionists <strong>|</strong> Packaging and Distribution Centers <strong>|</strong> Policy makers |Restaurant Management <strong>|</strong> Sales and marketing department of the food industry <strong>|</strong> Grocery and Convenience Stores <strong>|</strong> Supply Chain Distributors <strong>|</strong> Airline etc.</p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><em> </em></span></p>','Profile of Visitors','','inherit','open','open','','41-revision-v1','','','2016-05-08 07:08:25','2016-05-08 07:08:25','',41,'http://cems-foodagro.com/foodagrobd/41-revision-v1/',0,'revision','',0),(560,1,'2016-05-08 07:18:41','2016-05-08 07:18:41','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n\r\n<strong>Feel free to ask any query if you have</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-foodagro.com\">contact@cems-foodagro.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-foodagro.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-foodagro.com\">www.cems-foodagro.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div><span style=\"color: #000000;\">Tel: 86-10-82842588</span></div>\r\n<div><span style=\"color: #000000;\">Fax: 86-10-84832956</span></div>\r\n<div><span style=\"color: #000000;\">Cell: 86 13811367205</span></div>\r\n<div><span style=\"color: #000000;\">E-mail: <span lang=\"EN-US\" style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></span></div>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','open','open','','44-revision-v1','','','2016-05-08 07:18:41','2016-05-08 07:18:41','',44,'http://cems-foodagro.com/foodagrobd/44-revision-v1/',0,'revision','',0),(561,1,'2016-05-08 10:08:48','2016-05-08 10:08:48','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>\r\n<strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<!--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"--><!--img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /--></a-->\r\n\r\n[big_header]Our Participants 2017[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n<p style=\"text-align: center;\">[big_header]Our Partners 2017[/big_header]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a>','Home','','inherit','open','open','','5-revision-v1','','','2016-05-08 10:08:48','2016-05-08 10:08:48','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(562,1,'2016-05-11 05:10:35','2016-05-11 05:10:35','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>\r\n<strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<!--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"--><!--img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /--></a-->\r\n\r\n[big_header]Our Participants 2017[/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n\r\n\r\n<!--h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a-->','Home','','inherit','open','open','','5-revision-v1','','','2016-05-11 05:10:35','2016-05-11 05:10:35','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(563,1,'2016-05-11 05:11:55','2016-05-11 05:11:55','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>\r\n<strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<!--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"--><!--img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /--></a-->\r\n\r\n[big_header]Our Participants 2016 [/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n\r\n\r\n<!--h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a-->','Home','','inherit','open','open','','5-revision-v1','','','2016-05-11 05:11:55','2016-05-11 05:11:55','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(564,1,'2016-10-08 06:03:03','2016-10-08 06:03:03','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td width=\"207\">\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\n</td>\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>ND</sup> INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017</strong></td>\n</tr>\n<tr>\n<td>\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\n</td>\n<td>\n<div style=\"color: #000000;\" align=\"left\">\n\n<strong><em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em></strong>\n\n</div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b> 26~29 April</b> 2017.</strong></strong></span></div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\n</span></div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.00 pm</span></div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\n</tr>\n<tr>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\n</tr>\n<tr>\n<td>\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\n</td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\n</tr>\n<tr>\n<td height=\"15\">\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\n</td>\n<td>\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\n</tr>\n</tbody>\n</table>','Fact Sheet','','inherit','open','open','','12-autosave-v1','','','2016-10-08 06:03:03','2016-10-08 06:03:03','',12,'http://cems-foodagro.com/foodagrobd/12-autosave-v1/',0,'revision','',0),(565,1,'2016-05-11 11:52:29','2016-05-11 11:52:29','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\"><strong>2<sup>nd</sup> Food & Agro Bangladesh International Expo 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\">\r\n\r\n<strong><em>The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipment</em>s, <em>Chemical,</em> <em>Packaging & Processing.</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong> <strong>6 – 9 April, 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 9.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2016-05-11 11:52:29','2016-05-11 11:52:29','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(566,1,'2016-05-11 11:58:29','2016-05-11 11:58:29','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td width=\"413\" style=\"color: #000000;\" ><strong>2<sup>nd</sup> Food & Agro Bangladesh International Expo 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\" style=\"color: #000000;\">\r\n\r\n<strong><em>The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipment</em>s, <em>Chemical,</em> <em>Packaging & Processing.</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong> <strong>6 – 9 April, 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 9.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2016-05-11 11:58:29','2016-05-11 11:58:29','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(567,1,'2016-05-11 12:01:07','2016-05-11 12:01:07','<p style=\"text-align: justify;\"><span style=\"color: #339966;\"><em><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></em></span></p>\r\n`CEMS Global’ brings to you <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>scheduled to be held from 6~9 April 2017, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.\r\n\r\nKeeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>showcasing all products & services from the food and agro sector from local and global companies.\r\n\r\n<strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.\r\n\r\n<strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products/ services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.\r\n\r\n ','Highlights','','inherit','open','open','','19-revision-v1','','','2016-05-11 12:01:07','2016-05-11 12:01:07','',19,'http://cems-foodagro.com/foodagrobd/19-revision-v1/',0,'revision','',0),(568,1,'2016-05-11 12:03:28','2016-05-11 12:03:28','<strong>Food Exhibits:</strong> Food & Beverage Featuring - Halal Food & Drink <strong>|</strong> Juice Processing Equipment <strong>|</strong> Chilled & Frozen Foods <strong>|</strong> Food Ingredients - Aromas / Flavors & Fragrances <strong>|</strong> Food Technology <strong>|</strong> Herbal and Medicinal Plants Exporters , Importers & Traders <strong>|</strong> Herbal Foods Products <strong>|</strong> Bakeries, Snacks, Rice, Tea, Coffee, Flour, Sugar, Salt, Sweet Manufacturers & manufacturing Equipment <strong>|</strong> Chain Shops <strong>| </strong>Fast Food Chains <strong>|</strong> Food Processing and Packaging Equipment <strong>|</strong> Refrigeration Technologies <strong>|</strong> Manufacturers and Distributors of Farm Machinery <strong>|</strong> Hospitality Services, Retails & Franchises <strong>|</strong> Organic Agricultural Products<strong> |</strong> Seafood: Fresh Seafood Products / Displays, Retails Equipment / Individuals, Companies, Organizations associated with: Spices & Medicinal Plants <strong>|</strong> Animal Food & Health <strong>|</strong> Meat Products & Processing Equipment <strong>|</strong> Government Departments <strong>| </strong>Inputs for Organic Agriculture <strong>|</strong> Equipment for Food and Agricultural Sector <strong>|</strong> Institutional Catering Management etc.\r\n\r\n<strong>Agro Exhibit:</strong> Agricultural Machinery and Technologies <strong>|</strong> Agriculture Seed Processor Units<strong>|</strong> Agricultural Products Manufacturers, Importers, Traders, Wholesalers <strong>|</strong> Agro Chemical, Fertilizers, Pesticides, Insecticides, Manufacturers, Importers, Traders, Wholesalers <strong>|</strong> Agricultural Cures <strong>|</strong> Other Agriculture Chemistry Products <strong>|</strong> Organic Agriculture Sectors <strong>|</strong> Fisheries & Animal Husbandry Machineries , Animal Care and veterinary Services <strong>|</strong> Animal Breeding Equipment <strong>|</strong> Poultry and Poultry Equipment <strong>|</strong> Packaging Equipment & Packaging Materials <strong>|</strong> Tractors and Combines | Sub-Industry | Irrigation Techniques <strong>|</strong> Greenhouse Construction and Equipment <strong>|</strong> Seed, Seedling, Sapling and Gardening Service Providers <strong>|</strong> Gardening Equipment <strong>|</strong> Biotechnology & Tissue Culture Technology <strong>|</strong> Dairy, Poultry & Live Stock <strong>| </strong>Post Harvest Handling Equipment <strong>|</strong> Soil Testing Equipment <strong>|</strong> Certification Agencies <strong>|</strong> Horticulture Processing Technology<strong>|</strong> Plasticulture, Aquaculture process providers and equipment <strong>|</strong> Aquaculture Technology, Workshop Tools & Equipment <strong>|</strong> Digital Temperature Controller & Data Logger <strong>|</strong> Refrigeration Van , Truck sellers & Body Builders <strong>|</strong> Ecological Agriculture Measuring and Recording Equipment <strong>|</strong> Cooling Pads & Heat Extractors<strong>|</strong> Transportation service providers <strong>|</strong> Manual Tools <strong>|</strong> Alternative Energy Sources <strong>|</strong> Banking & Insurance Service providers <strong>|</strong> Agro Related Institutions and Companies <strong>|</strong> Related Sector Publications etc.','Profile of Exhibits','','inherit','open','open','','38-revision-v1','','','2016-05-11 12:03:28','2016-05-11 12:03:28','',38,'http://cems-foodagro.com/foodagrobd/38-revision-v1/',0,'revision','',0),(569,1,'2016-05-11 12:06:31','2016-05-11 12:06:31','<p style=\"text-align: justify;\"><span style=\"color: #000000;\">‘<strong>2nd</strong> <em><strong>FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’</strong></em> will be a perfect platform for Area Manager / GM / Operation Manager / Owner / CEO / President / Vice President, F&B Manager / Banqueting Manager, Housekeeping Manager / Public Relation Manager / Marketing Manager / Financial Manager, Architect / Engineer / Interior Design, Ambassador -Trade Attaché, Head Waiters, Executive Chef / Pastry Chef, Hotel / Resort / Furnished Apartment, Restaurant / Café, Bakery / Pastry, Hospital / Healthcare, Supermarket, Architect / Engineer / Contractors / Interior Design / Consultant, Supplier (Hospitality and Foodservice Industry), Financial Company, Association / Tourism Board / Governmental Institutions / Chamber of Commerce / Embassy / Ministry, Events Management / Procurement / Communication / Public Relation Agency / Advertising Agency / Airline, etc.</span></p>','Focus','','inherit','open','open','','22-revision-v1','','','2016-05-11 12:06:31','2016-05-11 12:06:31','',22,'http://cems-foodagro.com/foodagrobd/22-revision-v1/',0,'revision','',0),(570,1,'2016-05-11 12:06:50','2016-05-11 12:06:50','<p style=\"text-align: justify;\"><span style=\"color: #000000;\">‘<strong>2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong><em><strong>’</strong></em> will be a perfect platform for Area Manager / GM / Operation Manager / Owner / CEO / President / Vice President, F&B Manager / Banqueting Manager, Housekeeping Manager / Public Relation Manager / Marketing Manager / Financial Manager, Architect / Engineer / Interior Design, Ambassador -Trade Attaché, Head Waiters, Executive Chef / Pastry Chef, Hotel / Resort / Furnished Apartment, Restaurant / Café, Bakery / Pastry, Hospital / Healthcare, Supermarket, Architect / Engineer / Contractors / Interior Design / Consultant, Supplier (Hospitality and Foodservice Industry), Financial Company, Association / Tourism Board / Governmental Institutions / Chamber of Commerce / Embassy / Ministry, Events Management / Procurement / Communication / Public Relation Agency / Advertising Agency / Airline, etc.</span></p>','Focus','','inherit','open','open','','22-revision-v1','','','2016-05-11 12:06:50','2016-05-11 12:06:50','',22,'http://cems-foodagro.com/foodagrobd/22-revision-v1/',0,'revision','',0),(572,1,'2016-05-25 07:07:48','2016-05-25 07:07:48','','Post Show Report 2016 - Food & Agro Bangladesh Int\'l Expo_ International Poultry and Livestock Bangladesh Expo & Agro Chem bangladesh Expo.','','inherit','open','open','','post-show-report-2016-food-agro-bangladesh-intl-expo_-international-poultry-and-livestock-bangladesh-expo-agro-chem-bangladesh-expo','','','2016-05-25 07:08:54','2016-05-25 07:08:54','',573,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf',0,'attachment','application/pdf',0),(573,1,'2016-05-25 07:12:06','2016-05-25 07:12:06','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\">Post Show Report 2016 - Food & Agro Bangladesh Int\'l Expo_ International Poultry and Livestock Bangladesh Expo & Agro Chem bangladesh Expo.</a>','Post Show','','publish','open','open','','post-show','','','2016-05-25 07:12:06','2016-05-25 07:12:06','',16,'http://cems-foodagro.com/foodagrobd/?page_id=573',0,'page','',0),(574,1,'2016-05-25 07:08:59','2016-05-25 07:08:59','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\">Post Show Report 2016 - Food & Agro Bangladesh Int\'l Expo_ International Poultry and Livestock Bangladesh Expo & Agro Chem bangladesh Expo.</a>','Post Show','','inherit','open','open','','573-revision-v1','','','2016-05-25 07:08:59','2016-05-25 07:08:59','',573,'http://cems-foodagro.com/foodagrobd/573-revision-v1/',0,'revision','',0),(575,1,'2016-05-25 07:12:32','2016-05-25 07:12:32',' ','','','publish','open','closed','','575','','','2016-12-14 09:28:01','2016-12-14 09:28:01','',16,'http://cems-foodagro.com/foodagrobd/?p=575',9,'nav_menu_item','',0),(576,1,'2016-05-25 07:58:41','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 07:58:41','2016-05-25 07:58:41','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?post_type=ngg_pictures&p=576',0,'ngg_pictures','',0),(577,1,'2016-05-25 07:58:42','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 07:58:42','2016-05-25 07:58:42','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?post_type=ngg_pictures&p=577',0,'ngg_pictures','',0),(581,1,'2016-05-25 08:02:42','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:02:42','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=581',0,'ngg_pictures','',0),(582,1,'2016-05-25 08:02:43','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:02:43','2016-05-25 08:02:43','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=582',0,'ngg_pictures','',0),(583,1,'2016-05-25 08:02:56','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:02:56','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=583',0,'ngg_pictures','',0),(584,1,'2016-05-25 08:02:57','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:02:57','2016-05-25 08:02:57','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=584',0,'ngg_pictures','',0),(585,1,'2016-05-25 08:03:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:08','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=585',0,'ngg_pictures','',0),(586,1,'2016-05-25 08:03:09','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:09','2016-05-25 08:03:09','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=586',0,'ngg_pictures','',0),(587,1,'2016-05-25 08:03:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:16','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=587',0,'ngg_pictures','',0),(588,1,'2016-05-25 08:03:17','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:17','2016-05-25 08:03:17','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=588',0,'ngg_pictures','',0),(589,1,'2016-05-25 08:03:27','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:27','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=589',0,'ngg_pictures','',0),(590,1,'2016-05-25 08:03:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:28','2016-05-25 08:03:28','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=590',0,'ngg_pictures','',0),(591,1,'2016-05-25 08:03:37','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:37','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=591',0,'ngg_pictures','',0),(592,1,'2016-05-25 08:03:37','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:37','2016-05-25 08:03:37','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=592',0,'ngg_pictures','',0),(593,1,'2016-05-25 08:03:49','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:49','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=593',0,'ngg_pictures','',0),(594,1,'2016-05-25 08:03:49','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:03:49','2016-05-25 08:03:49','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=594',0,'ngg_pictures','',0),(595,1,'2016-05-25 08:04:00','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:00','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=595',0,'ngg_pictures','',0),(596,1,'2016-05-25 08:04:00','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:00','2016-05-25 08:04:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=596',0,'ngg_pictures','',0),(597,1,'2016-05-25 08:04:10','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:10','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=597',0,'ngg_pictures','',0),(598,1,'2016-05-25 08:04:10','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:10','2016-05-25 08:04:10','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=598',0,'ngg_pictures','',0),(599,1,'2016-05-25 08:04:19','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:19','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=599',0,'ngg_pictures','',0),(600,1,'2016-05-25 08:04:20','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:20','2016-05-25 08:04:20','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=600',0,'ngg_pictures','',0),(601,1,'2016-05-25 08:04:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:28','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=601',0,'ngg_pictures','',0),(602,1,'2016-05-25 08:04:29','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:29','2016-05-25 08:04:29','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=602',0,'ngg_pictures','',0),(603,1,'2016-05-25 08:04:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=603',0,'ngg_pictures','',0),(604,1,'2016-05-25 08:04:36','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:36','2016-05-25 08:04:36','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=604',0,'ngg_pictures','',0),(605,1,'2016-05-25 08:04:44','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:44','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=605',0,'ngg_pictures','',0),(606,1,'2016-05-25 08:04:45','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:45','2016-05-25 08:04:45','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=606',0,'ngg_pictures','',0),(607,1,'2016-05-25 08:04:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:52','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=607',0,'ngg_pictures','',0),(608,1,'2016-05-25 08:04:53','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:53','2016-05-25 08:04:53','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=608',0,'ngg_pictures','',0),(609,1,'2016-05-25 08:04:59','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','open','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:59','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=609',0,'ngg_pictures','',0),(610,1,'2016-05-25 08:04:59','0000-00-00 00:00:00','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9','Untitled ngg_pictures','','draft','closed','open','','mixin_nextgen_table_extras','','','2016-05-25 08:04:59','2016-05-25 08:04:59','eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9',0,'http://cems-foodagro.com/foodagrobd/?p=610',0,'ngg_pictures','',0),(612,1,'2016-06-08 05:43:24','2016-06-08 05:43:24','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>nd</sup> Food & Agro Bangladesh International Expo 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div style=\"color: #000000;\" align=\"left\">\r\n\r\n<strong><em>The biggest 3-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipment</em>s, <em>Chemical,</em> <em>Packaging & Processing.</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b>23 ~ 25 March </b> 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 9.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2016-06-08 05:43:24','2016-06-08 05:43:24','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(613,1,'2016-06-08 07:08:36','2016-06-08 07:08:36','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from <strong> 22 ~ 25 March 2017</strong>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2016-06-08 07:08:36','2016-06-08 07:08:36','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(614,1,'2016-06-08 07:09:25','2016-06-08 07:09:25','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>nd</sup> Food & Agro Bangladesh International Expo 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div style=\"color: #000000;\" align=\"left\">\r\n\r\n<strong><em>The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipment</em>s, <em>Chemical,</em> <em>Packaging & Processing.</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b>22 ~ 25 March </b> 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 9.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2016-06-08 07:09:25','2016-06-08 07:09:25','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(616,1,'2016-07-14 08:37:32','2016-07-14 08:37:32','[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\"><img class=\"alignnone size-full wp-image-6\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/image003.jpg\" alt=\"image003\" width=\"93\" height=\"128\" /></a>\r\n<strong><span style=\"color: #000000;\">Presents</span></strong>\r\n\r\n \r\n\r\n<!--a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1.jpg\"--><!--img class=\"alignnone wp-image-506 size-large\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Food-Agro-FB1-1024x387.jpg\" alt=\"Food-Agro-FB\" width=\"920\" height=\"348\" /--></a-->\r\n\r\n[big_header]Our Participants 2016 [/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n\r\n\r\n<!--h4 style=\"text-align: center;\"><strong>Beverage Partner</strong></h4>\r\n<p style=\"text-align: center;\"><a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme.png\"><img class=\"alignnone wp-image-530 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Beverage-Partner-Acme-300x47.png\" alt=\"Beverage Partner Acme\" width=\"166\" height=\"26\" /></a></p>\r\n\r\n<ul class=\"placemenu\" style=\"text-align: center;\">\r\n <li class=\"placemenu1\"><a href=\"#\">chaldal</a></li>\r\n <li class=\"placemenu2\"><a href=\"http://chaldal.com/\" target=\"_blank\">jj</a></li>\r\n <li class=\"placemenu3\"><a href=\"http://independent24.tv/\" target=\"_blank\">Independence</a></li>\r\n <li class=\"placemenu4\"><a href=\"#\">dddd</a></li>\r\n <li class=\"placemenu5\"><a href=\"http://aamartech.com/\" target=\"_blank\">AamarTech</a></li>\r\n <li class=\"placemenu6\"><a href=\"http://market-edge.net/#/home\">ttt</a></li>\r\n</ul>\r\n<p style=\"text-align: center;\">[clear]</p>\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\"><img class=\" wp-image-523 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/associative.jpg\" alt=\"associative\" width=\"847\" height=\"222\" /></a>\r\n[clear]\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><em><strong>Magazine Partner</strong></em></span></p>\r\n[clear]<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead.png\"><img class=\" wp-image-355 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Swad-Musthead-300x137.png\" alt=\"Swad-Musthead\" width=\"267\" height=\"122\" /></a-->\r\n\r\n\r\n\r\n\r\n[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n [/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://textechonline.org/textechbd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n [/five_sixth_last]\r\n[three_fourth]<p style=\"\"> [one_half]\r\n<a href=\"http://textechonline.org/textechbd/wp-content/uploads/2016/06/Flyer-Textech-bd-2016-LR.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-816\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-820\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://textechonline.org/textechbd/floor-plan/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/our-floor-plan.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-821\" /></a>\r\n\r\n<a href=\"http://textechonline.org/textechbd/post-show-report/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-822\" /></a>\r\n[/one_half_last]\r\n</p>\r\n[/three_fourth]\r\n\r\n\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n\r\n\r\n<!--Foure Page-->\r\n \r\n<p style=\"text-align: center;\" align=\"center\">\r\n\r\n[one_fourth]\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" width=\"200\" height=\"120\" /> \r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n[one_fourth]\r\n<a href=\"#\"><img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/Textech-Series-01.png\" width=\"200\" height=\"120\" /></a>\r\n<h3>Series of Exhibition</h3>\r\n17th Textech Bangladesh 2016 International Expo \r\nBangladesh’s’ biggest & oldest International Exhibition on Textile & Garment Technology,\r\nMachinery & Related Services\r\n\r\n<a href=\"http://textechonline.org/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n\r\n[one_fourth]\r\n\r\n\r\n<a href=\"#\"><img class=\"alignnone size-medium wp-image-370\" alt=\"Textech\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2016/05/slier.png\" width=\"200\" height=\"120\" /></a>\r\n\r\n<h3>Highlights</h3>\r\n\r\nCEMS-Global USA’s International `TEXTECH series of Exhibition’ have reached its accession in popularity in South & South-East Asia having organized extremely successful editions in Bangladesh,\r\n<a href=\"http://textechonline.org/textechbd/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<a href=\"http://cems-conexpo.com/conexpobd/wp-content/uploads/2015/02/conexpo2.jpg\"><img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/map.gif\" width=\"200\" height=\"120\" /></a>\r\n<h3>Fact Sheet</h3>\r\nServing the Textile & Apparel sector of Bangladesh for the last 16 years – Bangladeshs’ biggest & oldest International Exhibition on Textile Apparel Technology, Machinery & Related Services\r\n\r\n<a href=\"http://textechonline.org/textechbd/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n</p>\r\n\r\n\r\n\r\n\r\n<p style=\"text-align: center;\" align=\"right\">[big_header]Our Valued Exhibitors 2015[/big_header]</p>\r\n<p align=\"right\">[tiny-carousel-slider id=\"1\"]</p>\r\n ','Home','','inherit','open','open','','5-revision-v1','','','2016-07-14 08:37:32','2016-07-14 08:37:32','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(618,1,'2016-07-14 08:44:36','2016-07-14 08:44:36','\r\n[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n [/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n [/five_sixth_last]\r\n[three_fourth]<p style=\"\"> [one_half]\r\n<a href=\"http://textechonline.org/textechbd/wp-content/uploads/2016/06/Flyer-Textech-bd-2016-LR.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-816\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-820\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://textechonline.org/textechbd/floor-plan/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/our-floor-plan.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-821\" /></a>\r\n\r\n<a href=\"http://textechonline.org/textechbd/post-show-report/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-822\" /></a>\r\n[/one_half_last]\r\n</p>\r\n[/three_fourth]\r\n\r\n\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n\r\n\r\n<!--Foure Page-->\r\n \r\n<p style=\"text-align: center;\" align=\"center\">\r\n\r\n[one_fourth]\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" width=\"200\" height=\"120\" /> \r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n[one_fourth]\r\n<a href=\"#\"><img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/Textech-Series-01.png\" width=\"200\" height=\"120\" /></a>\r\n<h3>Series of Exhibition</h3>\r\n17th Textech Bangladesh 2016 International Expo \r\nBangladesh’s’ biggest & oldest International Exhibition on Textile & Garment Technology,\r\nMachinery & Related Services\r\n\r\n<a href=\"http://textechonline.org/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n\r\n[one_fourth]\r\n\r\n\r\n<a href=\"#\"><img class=\"alignnone size-medium wp-image-370\" alt=\"Textech\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2016/05/slier.png\" width=\"200\" height=\"120\" /></a>\r\n\r\n<h3>Highlights</h3>\r\n\r\nCEMS-Global USA’s International `TEXTECH series of Exhibition’ have reached its accession in popularity in South & South-East Asia having organized extremely successful editions in Bangladesh,\r\n<a href=\"http://textechonline.org/textechbd/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<a href=\"http://cems-conexpo.com/conexpobd/wp-content/uploads/2015/02/conexpo2.jpg\"><img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/map.gif\" width=\"200\" height=\"120\" /></a>\r\n<h3>Fact Sheet</h3>\r\nServing the Textile & Apparel sector of Bangladesh for the last 16 years – Bangladeshs’ biggest & oldest International Exhibition on Textile Apparel Technology, Machinery & Related Services\r\n\r\n<a href=\"http://textechonline.org/textechbd/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n</p>\r\n\r\n\r\n[big_header]Our Participants 2016 [/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n\r\n ','Home','','inherit','open','open','','5-revision-v1','','','2016-07-14 08:44:36','2016-07-14 08:44:36','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(619,1,'2016-07-14 08:49:05','2016-07-14 08:49:05','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n [/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n [/five_sixth_last]\r\n[three_fourth]<p style=\"\"> [one_half]\r\n<a href=\"http://textechonline.org/textechbd/wp-content/uploads/2016/06/Flyer-Textech-bd-2016-LR.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-816\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-820\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://textechonline.org/textechbd/floor-plan/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/our-floor-plan.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-821\" /></a>\r\n\r\n<a href=\"http://textechonline.org/textechbd/post-show-report/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-822\" /></a>\r\n[/one_half_last]\r\n</p>\r\n[/three_fourth]\r\n\r\n\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n\r\n\r\n<!--Foure Page-->\r\n \r\n<p style=\"text-align: center;\" align=\"center\">\r\n\r\n[one_fourth]\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" width=\"200\" height=\"120\" /> \r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n[one_fourth]\r\n<a href=\"#\"><img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/Textech-Series-01.png\" width=\"200\" height=\"120\" /></a>\r\n<h3>Series of Exhibition</h3>\r\n17th Textech Bangladesh 2016 International Expo \r\nBangladesh’s’ biggest & oldest International Exhibition on Textile & Garment Technology,\r\nMachinery & Related Services\r\n\r\n<a href=\"http://textechonline.org/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n\r\n[one_fourth]\r\n\r\n\r\n<a href=\"#\"><img class=\"alignnone size-medium wp-image-370\" alt=\"Textech\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2016/05/slier.png\" width=\"200\" height=\"120\" /></a>\r\n\r\n<h3>Highlights</h3>\r\n\r\nCEMS-Global USA’s International `TEXTECH series of Exhibition’ have reached its accession in popularity in South & South-East Asia having organized extremely successful editions in Bangladesh,\r\n<a href=\"http://textechonline.org/textechbd/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\nDetail : The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipments, Chemical, Packaging & Processing.\r\n\r\nOrganizer : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-foodagro.com/foodagrobd/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n</p>\r\n\r\n\r\n[big_header]Our Participants 2016 [/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n\r\n ','Home','','inherit','open','open','','5-revision-v1','','','2016-07-14 08:49:05','2016-07-14 08:49:05','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(620,1,'2016-07-14 08:53:27','2016-07-14 08:53:27','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n [/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n [/five_sixth_last]\r\n[three_fourth]<p style=\"\"> [one_half]\r\n<a href=\"http://textechonline.org/textechbd/wp-content/uploads/2016/06/Flyer-Textech-bd-2016-LR.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-816\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-820\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://textechonline.org/textechbd/floor-plan/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/our-floor-plan.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-821\" /></a>\r\n\r\n<a href=\"http://textechonline.org/textechbd/post-show-report/\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-822\" /></a>\r\n[/one_half_last]\r\n</p>\r\n[/three_fourth]\r\n\r\n\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n\r\n\r\n<!--Foure Page-->\r\n \r\n<p style=\"text-align: center;\" align=\"center\">\r\n\r\n[one_fourth]\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" width=\"200\" height=\"120\" /> \r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n[one_fourth]\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/gallery/food-and-agro/thumbs/thumbs_MG_3250.JPG\" width=\"200\" height=\"120\" /> \r\n<h3>Profile of Exhibits</h3>\r\nFood Exhibits: Food & Beverage Featuring – Halal Food & Drink | Juice Processing Equipment | Chilled & Frozen Foods | Food Ingredients – Aromas / Flavors & Fragrances | Food Technology | Herbal and Medicinal Plants Exporters \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/profile-of-exhibits/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n\r\n[one_fourth]\r\n\r\n\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"Textech\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\" width=\"200\" height=\"120\" /> \r\n\r\n<h3>Highlights</h3>\r\n\r\n`CEMS Global’ brings to you ‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from 6~9 April 2017, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components.\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\nDetail : The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipments, Chemical, Packaging & Processing.\r\n\r\nOrganizer : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-foodagro.com/foodagrobd/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n</p>\r\n\r\n\r\n[big_header]Our Participants 2016 [/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n\r\n ','Home','','inherit','open','open','','5-revision-v1','','','2016-07-14 08:53:27','2016-07-14 08:53:27','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(621,1,'2016-07-14 08:56:49','2016-07-14 08:56:49','','Floor Plan','','publish','open','open','','floor-plan','','','2016-07-14 08:56:49','2016-07-14 08:56:49','',0,'http://cems-foodagro.com/foodagrobd/?page_id=621',0,'page','',0),(622,1,'2016-07-14 08:56:49','2016-07-14 08:56:49','','Floor Plan','','inherit','open','open','','621-revision-v1','','','2016-07-14 08:56:49','2016-07-14 08:56:49','',621,'http://cems-foodagro.com/foodagrobd/621-revision-v1/',0,'revision','',0),(623,1,'2016-07-14 08:58:33','2016-07-14 08:58:33','','Floor-Plan-button','','inherit','open','open','','floor-plan-button','','','2016-07-14 08:58:33','2016-07-14 08:58:33','',5,'http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Floor-Plan-button.png',0,'attachment','image/png',0),(624,1,'2016-07-14 09:00:02','2016-07-14 09:00:02','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n [/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n [/five_sixth_last]\r\n[three_fourth]<p style=\"\">\r\n [one_half]\r\n\r\n<a href=\"#\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-816\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-820\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/floor-plan/\"><img src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Floor-Plan-button-300x64.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-821\" /></a>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\"><img src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" class=\"alignnone size-full wp-image-822\" /></a>\r\n\r\n[/one_half_last]\r\n</p>\r\n[/three_fourth]\r\n\r\n\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n\r\n\r\n<!--Foure Page-->\r\n \r\n<p style=\"text-align: center;\" align=\"center\">\r\n\r\n[one_fourth]\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" width=\"200\" height=\"120\" /> \r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n[one_fourth]\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/gallery/food-and-agro/thumbs/thumbs_MG_3250.JPG\" width=\"200\" height=\"120\" /> \r\n<h3>Profile of Exhibits</h3>\r\nFood Exhibits: Food & Beverage Featuring – Halal Food & Drink | Juice Processing Equipment | Chilled & Frozen Foods | Food Ingredients – Aromas / Flavors & Fragrances | Food Technology | Herbal and Medicinal Plants Exporters \r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/profile-of-exhibits/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n\r\n\r\n[one_fourth]\r\n\r\n\r\n <img class=\"alignnone size-medium wp-image-370\" alt=\"Textech\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\" width=\"200\" height=\"120\" /> \r\n\r\n<h3>Highlights</h3>\r\n\r\n`CEMS Global’ brings to you ‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from 6~9 April 2017, will be a glittering showcase of the Food and Agro based products and service industry.\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" alt=\"conexpo\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\nDetail : The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipments, Chemical, Packaging & Processing.\r\nOrganizer : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-foodagro.com/foodagrobd/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n</p>\r\n\r\n\r\n[big_header]Our Participants 2016 [/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]\r\n\r\n ','Home','','inherit','open','open','','5-revision-v1','','','2016-07-14 09:00:02','2016-07-14 09:00:02','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(626,1,'2016-07-26 11:18:32','2016-07-26 11:18:32','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>nd</sup> Food & Agro Bangladesh International Expo 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div style=\"color: #000000;\" align=\"left\">\r\n\r\n<strong><em>The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipment</em>s, <em>Chemical,</em> <em>Packaging & Processing.</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b> 26~29 April</b> 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 9.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','open','open','','12-revision-v1','','','2016-07-26 11:18:32','2016-07-26 11:18:32','',12,'http://cems-foodagro.com/foodagrobd/12-revision-v1/',0,'revision','',0),(628,1,'2016-08-08 08:16:30','2016-08-08 08:16:30','<p style=\"text-align: justify;\"><span style=\"color: #339966;\"><em><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></em></span></p>\r\n`CEMS Global’ brings to you <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>scheduled to be held from 26~29 April,2017, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.\r\n\r\nKeeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>showcasing all products & services from the food and agro sector from local and global companies.\r\n\r\n<strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.\r\n\r\n<strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ </strong>will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products/ services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.\r\n\r\n ','Highlights','','inherit','open','open','','19-revision-v1','','','2016-08-08 08:16:30','2016-08-08 08:16:30','',19,'http://cems-foodagro.com/foodagrobd/19-revision-v1/',0,'revision','',0),(629,1,'2016-08-08 08:18:02','2016-08-08 08:18:02','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from <b>26~29 April,2017</b>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2016-08-08 08:18:02','2016-08-08 08:18:02','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(630,1,'2016-08-08 08:18:39','2016-08-08 08:18:39','<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>A perfect Exhibition for Food & Agro products & Services, in Bangladesh….</strong></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from <b>26~29 April,2017</b>, will be a glittering showcase of the Food and Agro based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Food Festival and Agro based products and service industry is therefore not only a networking ground but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\">Keeping this in view, CEMS Global USA is going to launch an exhibition <strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO 2017</strong>’ showcasing all products/services from the food and agro sector from local and global companies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO 2017</strong>’ takes immense pride and gratitude in the presence of agriculture and horticulture products and equipment, poultry products, livestock products, machinery and supplies, fishing and aquaculture and other related products and services. The exhibition is going to be one of the greatest is Asia. The exhibitors and visitors are known to enjoy and have good time at the event. The event also conducts conferences and seminar programs, adding more light to the industry. The 1st International Showcase shall include Food, Drinks, Hospitality, Foodservice, Bakery & Retail industries, Food, Hotel, Restaurant & Food service Equipment & Machinery, Supplies, and Services & Related Technology in Bangladesh.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #000000;\"><strong>‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO 2017</strong>’ will be a perfect platform for Manufacturers & Suppliers to showcase their food & agro products / services / hospitality Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, hotels, business representatives restaurants, of course the consumers and other bulk purchasers from worldwide.</span></p>','Event Profile','','inherit','open','open','','31-revision-v1','','','2016-08-08 08:18:39','2016-08-08 08:18:39','',31,'http://cems-foodagro.com/foodagrobd/31-revision-v1/',0,'revision','',0),(633,1,'2016-09-22 09:36:44','2016-09-22 09:36:44','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n[/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n[/five_sixth_last]\r\n[three_fourth]\r\n\r\n[one_half]\r\n\r\n<a href=\"#\"><img class=\"alignnone size-full wp-image-816\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img class=\"alignnone size-full wp-image-820\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/floor-plan/\"><img class=\"alignnone size-full wp-image-821\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Floor-Plan-button-300x64.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\"><img class=\"alignnone size-full wp-image-822\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half_last]\r\n\r\n[/three_fourth]\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n<!--Foure Page-->\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/gallery/food-and-agro/thumbs/thumbs_MG_3250.JPG\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Profile of Exhibits</h3>\r\nFood Exhibits: Food & Beverage Featuring – Halal Food & Drink | Juice Processing Equipment | Chilled & Frozen Foods | Food Ingredients – Aromas / Flavors & Fragrances | Food Technology | Herbal and Medicinal Plants Exporters\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/profile-of-exhibits/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\" alt=\"Textech\" width=\"200\" height=\"120\" />\r\n<h3>Highlights</h3>\r\n`CEMS Global’ brings to you ‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from <b>26~29 April,2017</b>, will be a glittering showcase of the Food and Agro based products and service industry.\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\nDetail : The biggest 4-days International Exhibition on Food Products, Beverage Products, Agricultural Machineries, Equipments, Chemical, Packaging & Processing.\r\nOrganizer : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-foodagro.com/foodagrobd/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n\r\n[big_header]Our Participants 2016 [/big_header]\r\n\r\n[tiny-carousel-slider id=\"1\"]','Home','','inherit','open','open','','5-revision-v1','','','2016-09-22 09:36:44','2016-09-22 09:36:44','',5,'http://cems-foodagro.com/foodagrobd/5-revision-v1/',0,'revision','',0),(636,1,'2016-10-08 06:01:24','2016-10-08 06:01:24','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>ND</sup> INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div style=\"color: #000000;\" align=\"left\">\r\n\r\n<strong><em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b> 26~29 April</b> 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 9.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','closed','closed','','12-revision-v1','','','2016-10-08 06:01:24','2016-10-08 06:01:24','',12,'http://cems-agrochem.com/index.php/12-revision-v1/',0,'revision','',0),(637,1,'2016-10-08 06:01:56','2016-10-08 06:01:56','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>ND</sup> INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div style=\"color: #000000;\" align=\"left\">\r\n\r\n<strong><em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b> 26~29 April</b> 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">11.00 am to 8.00 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','closed','closed','','12-revision-v1','','','2016-10-08 06:01:56','2016-10-08 06:01:56','',12,'http://cems-agrochem.com/index.php/12-revision-v1/',0,'revision','',0),(638,1,'2016-10-08 06:03:14','2016-10-08 06:03:14','<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\"><img class=\" size-full wp-image-13 aligncenter\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"map22\" width=\"244\" height=\"202\" /></a>\r\n<table border=\"0\" width=\"80%\" cellspacing=\"10\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"207\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Event</span></p>\r\n</td>\r\n<td style=\"color: #000000;\" width=\"413\"><strong>2<sup>ND</sup> INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017</strong></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Detail</span></p>\r\n</td>\r\n<td>\r\n<div style=\"color: #000000;\" align=\"left\">\r\n\r\n<strong><em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em></strong>\r\n\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Date</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\"><strong><strong><b> 26~29 April</b> 2017.</strong></strong></span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Location</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Dhaka, Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Venue</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">International Convention City, Bashundara, Dhaka, Bangladesh.\r\n</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Opening Hours</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">10.30 am to 8.30 pm</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Frequency</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Annual</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Open to</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Trade Visitors & Consumer</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Organizer</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS USA in association with CEMS Bangladesh</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Cooperated by</span></div></td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">CEMS Global – Asia Pacific Singapore, CEMS China, CEMS India, CEMS Lanka, CEMS Indonesia</span></div></td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p align=\"left\"><span style=\"color: #000000;\">Expected number Of Booths</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">200</span></div></td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\">\r\n<p align=\"left\"><span style=\"color: #000000;\">Standard Booth Size</span></p>\r\n</td>\r\n<td>\r\n<div align=\"left\"><span style=\"color: #000000;\">Minimum 6 sqm</span></div></td>\r\n</tr>\r\n</tbody>\r\n</table>','Fact Sheet','','inherit','closed','closed','','12-revision-v1','','','2016-10-08 06:03:14','2016-10-08 06:03:14','',12,'http://cems-agrochem.com/index.php/12-revision-v1/',0,'revision','',0),(639,1,'2016-10-08 06:07:50','2016-10-08 06:07:50','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n[/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n[/five_sixth_last]\r\n[three_fourth]\r\n\r\n[one_half]\r\n\r\n<a href=\"#\"><img class=\"alignnone size-full wp-image-816\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img class=\"alignnone size-full wp-image-820\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/floor-plan/\"><img class=\"alignnone size-full wp-image-821\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Floor-Plan-button-300x64.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\"><img class=\"alignnone size-full wp-image-822\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half_last]\r\n\r\n[/three_fourth]\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n<!--Foure Page-->\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/gallery/food-and-agro/thumbs/thumbs_MG_3250.JPG\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Profile of Exhibits</h3>\r\nFood Exhibits: Food & Beverage Featuring – Halal Food & Drink | Juice Processing Equipment | Chilled & Frozen Foods | Food Ingredients – Aromas / Flavors & Fragrances | Food Technology | Herbal and Medicinal Plants Exporters\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/profile-of-exhibits/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\" alt=\"Textech\" width=\"200\" height=\"120\" />\r\n<h3>Highlights</h3>\r\n`CEMS Global’ brings to you ‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from <b>26~29 April,2017</b>, will be a glittering showcase of the Food and Agro based products and service industry.\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\nDetail : <em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em>\r\nOrganizer : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-foodagro.com/foodagrobd/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2016-10-08 06:07:50','2016-10-08 06:07:50','',5,'http://cems-agrochem.com/index.php/5-revision-v1/',0,'revision','',0),(641,1,'2016-10-08 06:11:16','2016-10-08 06:11:16','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n[/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n[/five_sixth_last]\r\n[three_fourth]\r\n\r\n[one_half]\r\n\r\n<a href=\"#\"><img class=\"alignnone size-full wp-image-816\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img class=\"alignnone size-full wp-image-820\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/floor-plan/\"><img class=\"alignnone size-full wp-image-821\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Floor-Plan-button-300x64.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\"><img class=\"alignnone size-full wp-image-822\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half_last]\r\n\r\n[/three_fourth]\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n<!--Foure Page-->\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/gallery/food-and-agro/thumbs/thumbs_MG_3250.JPG\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Profile of Exhibits</h3>\r\n<strong>Agriculture Chemicals:</strong> Chemical Pesticides & Intermediates Ecological Pesticides, Biopesticides, Agriculture Chemical Production & Processing Technologies.\r\n\r\n<strong>Agricultural Fertilizer:</strong> Nitrogen Fertilizer, Potash Fertilizer, Phosphate Fertilizer........\r\n\r\n<a href=\"http://cems-agrochem.com/index.php/profile-of-exhibits/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\" alt=\"Textech\" width=\"200\" height=\"120\" />\r\n<h3>Highlights</h3>\r\n`CEMS Global’ brings to you ‘2ND FOOD AND AGRO BANGLADESH INTERNATIONAL EXPO -2017’ scheduled to be held from <b>26~29 April,2017</b>, will be a glittering showcase of the Food and Agro based products and service industry.\r\n\r\n<a href=\"http://cems-agrochem.com/index.php/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\nDetail : <em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em>\r\nOrganizer : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-agrochem.com/index.php/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2016-10-08 06:11:16','2016-10-08 06:11:16','',5,'http://cems-agrochem.com/index.php/5-revision-v1/',0,'revision','',0),(642,1,'2016-10-08 06:13:05','2016-10-08 06:13:05','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n[/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n[/five_sixth_last]\r\n[three_fourth]\r\n\r\n[one_half]\r\n\r\n<a href=\"#\"><img class=\"alignnone size-full wp-image-816\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img class=\"alignnone size-full wp-image-820\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/floor-plan/\"><img class=\"alignnone size-full wp-image-821\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Floor-Plan-button-300x64.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\"><img class=\"alignnone size-full wp-image-822\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half_last]\r\n\r\n[/three_fourth]\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n<!--Foure Page-->\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/gallery/food-and-agro/thumbs/thumbs_MG_3250.JPG\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Profile of Exhibits</h3>\r\n<strong>Agriculture Chemicals:</strong> Chemical Pesticides & Intermediates Ecological Pesticides, Biopesticides, Agriculture Chemical Production & Processing Technologies.\r\n\r\n<strong>Agricultural Fertilizer:</strong> Nitrogen Fertilizer, Potash Fertilizer, Phosphate Fertilizer........\r\n\r\n<a href=\"http://cems-agrochem.com/index.php/profile-of-exhibits/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\" alt=\"Textech\" width=\"200\" height=\"120\" />\r\n<h3>Highlights</h3>\r\n`CEMS Global’ brings to you <strong>‘2<sup>nd</sup> AGRO CHEM BANGLADESH INTERNATIONAL EXPO - 2017</strong>’ scheduled to be held from <strong>26-29 April 2017</strong>, which will be a glittering showcase for the Agricultural Chemical based products and service industry.\r\n\r\n<a href=\"http://cems-agrochem.com/index.php/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\nDetail : <em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em>\r\nOrganizer : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-agrochem.com/index.php/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2016-10-08 06:13:05','2016-10-08 06:13:05','',5,'http://cems-agrochem.com/index.php/5-revision-v1/',0,'revision','',0),(643,1,'2016-10-08 06:13:38','2016-10-08 06:13:38','[one_sixth]\r\n<a href=\"#\"><img src=\"http://cemsonline.com/wp-content/themes/cems/images/logo.png\" alt=\"index\" width=\"130\" height=\"120\" /></a>\r\n<span style=\"color: #000000;\"><strong><em> Presents</em></strong></span>\r\n[/one_sixth]\r\n\r\n[five_sixth_last]\r\n[biginfopane title=\"Click here to Pre-register yourself for your visit to the Expo Online\" href=\"http://cems-foodagro.com/foodagrobd/online-visitor-registration/\" buttontitle=\"Online Visitor Registration\" target=\"_blank\"][/biginfopane]\r\n[/five_sixth_last]\r\n[three_fourth]\r\n\r\n[one_half]\r\n\r\n<a href=\"#\"><img class=\"alignnone size-full wp-image-816\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/final.png\" alt=\"final\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://bangladeshmotorsports.com/textechonline/textechbd/wp-content/uploads/2014/10/EXPOAPPLICATIONFORM.pdf\"><img class=\"alignnone size-full wp-image-820\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/expo-registration-form.png\" alt=\"expo-registration-form\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half_last]\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/floor-plan/\"><img class=\"alignnone size-full wp-image-821\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/Floor-Plan-button-300x64.png\" alt=\"our-floor-plan\" width=\"330\" height=\"70\" /></a>\r\n\r\n<a href=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/Post-Show-Report-2016-Food-Agro-Bangladesh-Intl-Expo_-International-Poultry-and-Livestock-Bangladesh-Expo-Agro-Chem-bangladesh-Expo..pdf\"><img class=\"alignnone size-full wp-image-822\" src=\"http://textechonline.org/textechbd/wp-content/uploads/2014/10/post-show-report.png\" alt=\"post-show-report\" width=\"330\" height=\"70\" /></a>\r\n\r\n[/one_half_last]\r\n\r\n[/three_fourth]\r\n\r\n[one_fourth_last]\r\n[wonderplugin_carousel id=\"3\"]\r\n[/one_fourth_last]\r\n\r\n<!--Foure Page-->\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cemsonline.com/wp-content/themes/cems/images/slider/slideimg01.jpg\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>About CEMS</h3>\r\nSince its inception in 1992, CEMS, in this span of 2 decades has made a commendable presence in the region as a Multinational Exhibition Organizer with its owned operations in 8 countries & organizing over 40 exhibitions ........\r\n<a href=\"http://cemsonline.com/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/gallery/food-and-agro/thumbs/thumbs_MG_3250.JPG\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Profile of Exhibits</h3>\r\n<strong>Agriculture Chemicals:</strong> Chemical Pesticides & Intermediates Ecological Pesticides, Biopesticides, Agriculture Chemical Production & Processing Technologies.\r\n\r\n<strong>Agricultural Fertilizer:</strong> Nitrogen Fertilizer, Potash Fertilizer, Phosphate Fertilizer........\r\n\r\n<a href=\"http://cems-agrochem.com/index.php/profile-of-exhibits/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth]\r\n\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2016/05/MG_3222.jpg\" alt=\"Textech\" width=\"200\" height=\"120\" />\r\n<h3>Highlights</h3>\r\n`CEMS Global’ brings to you <strong>‘2<sup>nd</sup> AGRO CHEM BANGLADESH INTERNATIONAL EXPO - 2017</strong>’ scheduled to be held from <strong>26-29 April 2017</strong>, which will be a glittering showcase for the Agricultural Chemical based products and service industry.\r\n\r\n<a href=\"http://cems-agrochem.com/index.php/highlights/\" target=\"_blank\">Read More</a>\r\n[/one_fourth]\r\n\r\n[one_fourth_last]\r\n<img class=\"alignnone size-medium wp-image-370\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/map22.gif\" alt=\"conexpo\" width=\"200\" height=\"120\" />\r\n<h3>Fact Sheet</h3>\r\n<strong>Detail</strong> : <em>An Int\'l Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh</em>\r\n<strong>Organizer</strong> : CEMS USA in association with CEMS Bangladesh\r\n<a href=\"http://cems-agrochem.com/index.php/fact-sheet/\" target=\"_blank\">Read More</a>\r\n[/one_fourth_last]\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2016-10-08 06:13:38','2016-10-08 06:13:38','',5,'http://cems-agrochem.com/index.php/5-revision-v1/',0,'revision','',0),(644,1,'2016-10-08 06:14:52','2016-10-08 06:14:52','<strong><em>A Perfect Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh.</em></strong>\r\n\r\n<strong> </strong>\r\n\r\n`CEMS Global’ brings to you<strong> ‘2<sup>nd</sup> AGRO CHEM BANGLADESH INTERNATIONAL EXPO - 2017’</strong> scheduled to be held from<strong> 26-29 April 2017</strong>, which will be a glittering showcase for the Agricultural Chemical based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Agricultural Chemical based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.\r\n\r\n \r\n\r\nChemical fertilizers and pesticides have been gotten acute importance in Bangladesh agriculture. Bangladesh started agrochemical use mainly in 1960s as food security for a vast number of populations. The agriculture sector aims at facilitating an innovative and modern agricultural system which renders increased production capacity through invention of new technology and creation of greater opportunity for agricultural research. Chemical fertilizers play a great role in agricultural growth but greater level of awareness is required in order to refrain from usage harmful chemical matter for maintaining a healthy ecological balance. In order to ensure food security through development of agriculture in Bangladesh, the invention, adoption and dissemination of ‘new technology’ must be ensured with a view to increasing production of diversified crops.\r\n\r\n \r\n\r\n<strong>‘AGRO CHEM BANGLADESH INTERNATIONAL EXPO -2017’</strong> will be a perfect platform for Manufacturers & Suppliers to showcase their agricultural chemical products/ services Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, business representatives, of course the consumers and other bulk purchasers from global scale.','Event Profile','','inherit','closed','closed','','31-revision-v1','','','2016-10-08 06:14:52','2016-10-08 06:14:52','',31,'http://cems-agrochem.com/index.php/31-revision-v1/',0,'revision','',0),(645,1,'2016-10-08 06:15:25','2016-10-08 06:15:25','<strong><em>A Perfect Exhibition on Agricultural Chemicals, Pesticides, Crop Nutrition Ingredients, Products & Equipments for Bangladesh.</em></strong>\r\n\r\n<strong> </strong>\r\n\r\n`CEMS Global’ brings to you<strong> ‘2<sup>nd</sup> AGRO CHEM BANGLADESH INTERNATIONAL EXPO - 2017’</strong> scheduled to be held from<strong> 26-29 April 2017</strong>, which will be a glittering showcase for the Agricultural Chemical based products and service industry. It will reveal to the country, the rapid developments in the industry as well as new technology components. The neat layouts of the show provide ample opportunity to the consumers of the industry to see the latest offerings in the market as well as to the business visitor to carry out networking in a highly enabled environment. The Agricultural Chemical based products and service industry is therefore not only a networking ground, but also a place to find business partners and strategic alliances for manufacturing, outsourcing, sub-contracting, design and development as well as direct marketing.\r\n\r\nChemical fertilizers and pesticides have been gotten acute importance in Bangladesh agriculture. Bangladesh started agrochemical use mainly in 1960s as food security for a vast number of populations. The agriculture sector aims at facilitating an innovative and modern agricultural system which renders increased production capacity through invention of new technology and creation of greater opportunity for agricultural research. Chemical fertilizers play a great role in agricultural growth but greater level of awareness is required in order to refrain from usage harmful chemical matter for maintaining a healthy ecological balance. In order to ensure food security through development of agriculture in Bangladesh, the invention, adoption and dissemination of ‘new technology’ must be ensured with a view to increasing production of diversified crops.\r\n\r\n<strong>‘AGRO CHEM BANGLADESH INTERNATIONAL EXPO -2017’</strong> will be a perfect platform for Manufacturers & Suppliers to showcase their agricultural chemical products/ services Sector and the Expo will assemble agents, distributors, importers, trading companies, wholesalers, retailers, business representatives, of course the consumers and other bulk purchasers from global scale.','Highlights','','inherit','closed','closed','','19-revision-v1','','','2016-10-08 06:15:25','2016-10-08 06:15:25','',19,'http://cems-agrochem.com/index.php/19-revision-v1/',0,'revision','',0),(646,1,'2016-10-08 06:16:16','2016-10-08 06:16:16','<strong>Agriculture Chemicals:</strong> Chemical Pesticides & Intermediates Ecological Pesticides, Biopesticides, Agriculture Chemical Production & Processing Technologies.\r\n\r\n<strong> </strong>\r\n\r\n<strong>Agricultural Fertilizer:</strong> Nitrogen Fertilizer, Potash Fertilizer, Phosphate Fertilizer, Biological Fertilizer, Compound Fertilizer, New Specialized Fertilizers (Seaweed Fertilizers, Biological Fertilizers, Foliage Fertilizers, Slow Release Fertilizers, Trace Element Fertilizers, Humid Acid Fertilizers)\r\n\r\n \r\n\r\n<strong>Chemical Pesticides:</strong> Products of insecticide, Herbicide, Fungicide, Intermediates, Ecological Chemical Pesticides, Biological Pesticide, Pesticide Production, Pesticide Processing Technology.\r\n\r\n<strong> </strong>\r\n\r\n<strong>Crop Protection & Biotechnology:</strong> Plant Growth Regulators, Transgenic Products, Soil Additives, Nutritional Agents, Turf.\r\n\r\n<strong> </strong>\r\n\r\n<strong>Agrochemical Machinery:</strong> Equipment for Agrochemical Products, Spraying Machine, Agricultural Plastic, Farming Machine, Horticultural Grass Mown, Sprinkler Machine, Irrigating Equipment and the relative packaging.\r\n\r\n \r\n\r\n<strong>Agricultural Plastic:</strong> Shed Film, Farmland Film, Shading Net, Anti-insect Net, Modern Agricultural Covering Stuff, Seed Nursery Container, Plastic Water Saving Irrigating Equipment.','Profile of Exhibits','','inherit','closed','closed','','38-revision-v1','','','2016-10-08 06:16:16','2016-10-08 06:16:16','',38,'http://cems-agrochem.com/index.php/38-revision-v1/',0,'revision','',0),(647,1,'2016-10-08 06:16:50','2016-10-08 06:16:50','<strong>‘2ND INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017’</strong> will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Agro Technologist, Scientist, Engineers, Owners from the below industries, Agriculture Department | Agro Producers |Agrochemical Wholesalers & Retailers | Chemical Product | Exporters & Importers | Consultants | Dairy, Poultry & Livestock Farmers | Engineers and Technicians | Entrepreneurs, Farm Contractors | Farmers, Agriculturists and Agronomists | Government Representatives | Investors and Bankers | Mass Agrochemical Product & Technology Users | New Agricultural Product | Technology Applied Organizations | Related Enterprises & Organizations | Transport & Logistic Experts | Universities and Research Institutions | Veterinary Practitioners.','Profile of Visitors','','inherit','closed','closed','','41-revision-v1','','','2016-10-08 06:16:50','2016-10-08 06:16:50','',41,'http://cems-agrochem.com/index.php/41-revision-v1/',0,'revision','',0),(648,1,'2016-10-08 06:19:16','2016-10-08 06:19:16','<strong>‘2ND INTERNATIONAL AGRO CHEM BANGLADESH EXPO 2017’</strong> will be a perfect platform for Decision Makers, CEO, MD, GM, Managers, Agro Technologist, Scientist, Engineers, Owners from the below industries, Agriculture Department | Agro Producers |Agrochemical Wholesalers & Retailers | Chemical Product | Exporters & Importers | Consultants | Dairy, Poultry & Livestock Farmers | Engineers and Technicians | Entrepreneurs, Farm Contractors | Farmers, Agriculturists and Agronomists | Government Representatives | Investors and Bankers | Mass Agrochemical Product & Technology Users | New Agricultural Product | Technology Applied Organizations | Related Enterprises & Organizations | Transport & Logistic Experts | Universities and Research Institutions | Veterinary Practitioners.','Focus','','inherit','closed','closed','','22-revision-v1','','','2016-10-08 06:19:16','2016-10-08 06:19:16','',22,'http://cems-agrochem.com/index.php/22-revision-v1/',0,'revision','',0),(649,1,'2016-10-08 06:31:21','2016-10-08 06:31:21','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n\r\n<strong>Feel free to ask any query if you have</strong>\r\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-cems-foodagro.com.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div><span style=\"color: #000000;\">Tel: 86-10-82842588</span></div>\r\n<div><span style=\"color: #000000;\">Fax: 86-10-84832956</span></div>\r\n<div><span style=\"color: #000000;\">Cell: 86 13811367205</span></div>\r\n<div><span style=\"color: #000000;\">E-mail: <span lang=\"EN-US\" style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></span></div>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','closed','closed','','44-revision-v1','','','2016-10-08 06:31:21','2016-10-08 06:31:21','',44,'http://cems-agrochem.com/index.php/44-revision-v1/',0,'revision','',0),(650,1,'2016-10-08 06:32:53','2016-10-08 06:32:53','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n\r\n<strong>Feel free to ask any query if you have</strong>\r\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-cems-foodagro.com.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><b></b><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div></div>\r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div><span style=\"color: #000000;\">Tel: 86-10-82842588</span></div>\r\n<div><span style=\"color: #000000;\">Fax: 86-10-84832956</span></div>\r\n<div><span style=\"color: #000000;\">Cell: 86 13811367205</span></div>\r\n<div><span style=\"color: #000000;\">E-mail: <span lang=\"EN-US\" style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></span></div>\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','closed','closed','','44-revision-v1','','','2016-10-08 06:32:53','2016-10-08 06:32:53','',44,'http://cems-agrochem.com/index.php/44-revision-v1/',0,'revision','',0),(651,1,'2016-10-08 06:35:40','2016-10-08 06:35:40','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n\r\n<strong>Feel free to ask any query if you have</strong>\r\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-cems-foodagro.com.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div></div>\r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div>Tel: 86-10-82842588</div>\r\n<div>Fax: 86-10-84832956</div>\r\n<div>Cell: 86 13811367205</div>\r\n<div>E-mail: <span lang=\"EN-US\"><a href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></div>\r\n<div>Web: www.cemschina.cn</div>\r\n<div></div>\r\n</div>\r\n<div id=\"post-99\">\r\n\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','closed','closed','','44-revision-v1','','','2016-10-08 06:35:40','2016-10-08 06:35:40','',44,'http://cems-agrochem.com/index.php/44-revision-v1/',0,'revision','',0),(652,1,'2016-10-08 06:37:20','2016-10-08 06:37:20','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n\r\n<strong>Feel free to ask any query if you have</strong>\r\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-cems-foodagro.com.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div></div>\r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div>Tel: 86-10-82842588</div>\r\n<div>Fax: 86-10-84832956</div>\r\n<div>Cell: 86 13811367205</div>\r\n<div>E-mail: <span lang=\"EN-US\"><a href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></div>\r\n<div>Web: <a href=\"www.cemschina.cn\" > www.cemschina.cn </a></div>\r\n<div></div>\r\n</div>\r\n<div id=\"post-99\">\r\n\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','closed','closed','','44-revision-v1','','','2016-10-08 06:37:20','2016-10-08 06:37:20','',44,'http://cems-agrochem.com/index.php/44-revision-v1/',0,'revision','',0),(653,1,'2016-10-08 06:38:23','2016-10-08 06:38:23','<div id=\"post-99\">\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-GLOBAL-CONTACT.gif\" alt=\"CEMS GLOBAL CONTACT\" width=\"80\" height=\"114\" /></a>\r\n\r\n<strong>Feel free to ask any query if you have</strong>\r\n<span style=\"color: #008000;\"><strong>Organizer & for Booking | Participation Information, please contact:</strong></span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>CEMS Global Offices</strong></span>\r\n<span style=\"color: #000000;\"> <a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\"><img class=\"alignnone size-full wp-image-196\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-usa1.jpg\" alt=\"cems usa\" width=\"100\" height=\"35\" /></a></span>\r\n<span style=\"color: #000000;\"><strong>Global HQ</strong></span>\r\n<span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span>\r\n<span style=\"color: #000000;\">57 W. 57th Street, 4th Floor,New York, NY 10019,USA</span>\r\n<span style=\"color: #000000;\">Hotline : +1 - 646 - 416 - 7902</span>\r\n<span style=\"color: #000000;\">Fax : +1 - 646 - 365 - 8625</span>\r\n<span style=\"color: #000000;\">Mail : <a href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a>, <a href=\"mailto:cems@cemsonline.com\">cems@cemsonline.com</a></span>\r\n<span style=\"color: #000000;\">Web : <a href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a>, <a href=\"http://www.cems-global.com\">www.cems-global.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Bangladesh</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/cems-bangladesh.jpg\" alt=\"cems bangladesh\" width=\"100\" height=\"35\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> House – 119, CEMS House, Unit A3, Road – 1, Banani Block – F, Dhaka – 1213, Bangladesh</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : <span class=\"style4 \"><a href=\"tel:%2B880-2-55040848%20%7E%2065\" target=\"_blank\">+880-2-55040848 ~ 65</a></span></span>\r\n<span style=\"color: #000000;\"> Fax : <a href=\"tel:%2B880-2-55040031\" target=\"_blank\">+880-2-55040031</a></span>\r\n<span style=\"color: #000000;\"> Mail : <a style=\"color: #000000;\" href=\"mailto:contact@cems-agrochem.com\">contact@cems-agrochem.com</a> ,<a style=\"color: #000000;\" href=\"mailto:cems@cemsbangladesh.com\">cems@cemsbangladesh.com</a> </span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsonline.com\">www.cemsonline.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for Sri Lanka</strong></span>\r\n\r\n<a title=\"\" href=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\"><img src=\"http://www.cems-yarnandfabric.com/difs/wp-content/uploads/2014/11/CEMS-Lanka-Logo.jpg\" alt=\"CEMS Lanka Logo\" width=\"100\" height=\"34\" /></a>\r\n<em><strong><span style=\"color: #000000;\">Conference & Exhibition Management Services Lanka (Private) Limited</span></strong></em>\r\n<em><strong> <span style=\"color: #000000;\"> 9 – 4/2, Station Road, Bambalapitiya, Colombo – 4, Sri Lanka</span></strong></em>\r\n\r\n<span style=\"color: #000000;\">Tel : +94 – 11 – 2591 – 750 ~ 2</span>\r\n<span style=\"color: #000000;\"> Fax : +94 – 11 – 247 2120</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"mailto:cems@cemslanka.com\">cems@cemslanka.com</a></span>\r\n<span style=\"color: #000000;\"> Web : <a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemslanka.com\">www.cemslanka.com</a>\r\n</span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for India</strong></span>\r\n\r\n<a href=\"http://cems-cems-foodagro.com.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\"><img class=\"alignnone size-full wp-image-61\" src=\"http://cems-foodagro.com/foodagrobd/wp-content/uploads/2015/05/cems-india.jpg\" alt=\"cems india\" width=\"100\" height=\"35\" /></a>\r\n<div><strong><em><span style=\"color: #000000;\">CONFERENCE & EXHIBITION MANAGEMENT SERVICE INDIA PVT LTD\r\n707, 7th Floor, Suneja Tower-II,\r\nDistrict Centre, Janakpuri\r\nNew Delhi-110058</span></em></strong></div>\r\n<span style=\"color: #000000;\">Tel : +91 – 11 – 42004700 ~ 12 </span>\r\n<span style=\"color: #000000;\"> Fax : +91 – 11 – 4200 4717</span>\r\n<span style=\"color: #000000;\"> Mail :<a style=\"color: #000000;\" href=\"mailto:contact@cems-foodpro.com\">contact@cems-agrochem.com</a>, <a style=\"color: #000000;\" href=\"mailto:cems@cemsindia.com\">cems@cemsindia.com</a> </span>\r\n<span style=\"color: #000000;\"> Web :<a style=\"color: #000000;\" href=\"http://www.cems-agrochem.com\">www.cems-agrochem.com</a> , <a style=\"color: #000000;\" href=\"http://www.cemsindia.in\">www.cemsindia.com</a>\r\n</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<span style=\"color: #ff0000;\"><strong>Corporate Office for China</strong></span>\r\n\r\n<a href=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\"><img class=\"alignleft wp-image-754\" src=\"http://cemsonline.com/wp-content/uploads/2014/12/cems-china1.jpg\" alt=\"cems china\" width=\"119\" height=\"41\" /></a>\r\n\r\n \r\n<div></div>\r\n<div><span style=\"color: #000000;\">Conference & Exhibition Management Services Ltd.</span></div>\r\n<div><span style=\"color: #000000;\">Add: Room 1803, Building 3, Qianhejiayuan, No.108, Beisihuan East Road, Chaoyang, Beijing, 100029, China</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div>Tel: 86-10-82842588</div>\r\n<div>Fax: 86-10-84832956</div>\r\n<div>Cell: 86 13811367205</div>\r\n<div>E-mail: <span lang=\"EN-US\"><a href=\"mailto:cems_china@163.com\" target=\"_blank\">cems_china@163.com</a></span></div>\r\n<div>Web: <a href=\"http://www.cemschina.cn\" > www.cemschina.cn </a></div>\r\n<div></div>\r\n</div>\r\n<div id=\"post-99\">\r\n\r\n<span style=\"color: #000000;\">For any Inquiry or Information, you can also mail us your inquiry at cems@cemsonline.com our Marketing Team will get back to you soon…………….</span>\r\n\r\n</div>','Contact Us','','inherit','closed','closed','','44-revision-v1','','','2016-10-08 06:38:23','2016-10-08 06:38:23','',44,'http://cems-agrochem.com/index.php/44-revision-v1/',0,'revision','',0),(655,1,'2016-12-14 09:27:00','2016-12-14 09:27:00','[speaker photo=\"http://cems-conexpo.com/wp-content/uploads/2015/02/Con-Expo.jpg\" name=\"21th CON-EXPO Bangladesh 2017 International Expo\" post=\"From 26~28 October,2017\" link=\"http://cems-conexpo.com/conexpobd/\" target=\"_blank\"]International Convention City,Bashundhara[/speaker]\r\n\r\n[speaker photo=\"http://cems-conexpo.com/wp-content/uploads/2015/02/Real-Expo.jpg\" name=\"18th Real-Estate EXPO Bangladesh 2017 International Expo\" post=\"From 26~28 October,2017\" link=\"http://cems-conexpo.com/realestate/\" target=\"_blank\"]International Convention City,Bashundhara[/speaker]\r\n','Home','','inherit','closed','closed','','5-revision-v1','','','2016-12-14 09:27:00','2016-12-14 09:27:00','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0),(657,1,'2016-12-14 09:33:52','2016-12-14 09:33:52','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/10/2ndAgroChemBD2017Logo.jpg\" name=\"2ND INT\'L AGRO CHEM BD EXPO 2017\" post=\"From 26~29 April,2017\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.\r\n[/speaker]\r\n\r\n[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/10/2ndAgroChemBD2017Logo.jpg\" name=\"INTERNATIONAL AGRO CHEM SRI LANKA EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]\r\n\r\n','Home','','inherit','closed','closed','','5-revision-v1','','','2016-12-14 09:33:52','2016-12-14 09:33:52','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0),(658,1,'2016-12-14 11:15:25','2016-12-14 11:15:25','','agrochemsrilanka2017','','inherit','open','closed','','agrochemsrilanka2017','','','2016-12-14 11:15:25','2016-12-14 11:15:25','',0,'http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg',0,'attachment','image/jpeg',0),(659,1,'2016-12-14 11:15:48','2016-12-14 11:15:48','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/10/2ndAgroChemBD2017Logo.jpg\" name=\"2ND INT\'L AGRO CHEM BD EXPO 2017\" post=\"From 26~29 April,2017\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.\r\n[/speaker]\r\n\r\n[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\"INTERNATIONAL AGRO CHEM SRI LANKA EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]','Home','','inherit','closed','closed','','5-revision-v1','','','2016-12-14 11:15:48','2016-12-14 11:15:48','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0),(660,1,'2016-12-15 04:24:47','2016-12-15 04:24:47','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/10/2ndAgroChemBD2017Logo.jpg\" name=\"2ND INT\'L AGRO CHEM Bangladesh EXPO 2017\" post=\"From 26~29 April,2017\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.\r\n[/speaker]\r\n\r\n[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\" SRI LANKA INTERNATIONAL AGRO CHEM EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]','Home','','inherit','closed','closed','','5-revision-v1','','','2016-12-15 04:24:47','2016-12-15 04:24:47','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0),(662,1,'2017-07-10 06:01:06','2017-07-10 06:01:06','','3rd-agrochem-logo','','inherit','open','closed','','3rd-agrochem-logo','','','2017-07-10 06:01:06','2017-07-10 06:01:06','',5,'http://cems-agrochem.com/wp-content/uploads/2015/05/3rd-agroChem-Logo.jpg',0,'attachment','image/jpeg',0),(664,1,'2017-07-10 06:02:11','2017-07-10 06:02:11','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2015/05/3rd-agroChem-Logo.jpg\" name=\"3RD AGRO CHEM BANGLADESH INTERNATIONAL EXPO 2018\" post=\"From 21 – 24 March 2018\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.\r\n[/speaker]\r\n\r\n[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\" SRI LANKA INTERNATIONAL AGRO CHEM EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2017-07-10 06:02:11','2017-07-10 06:02:11','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0),(666,1,'2017-10-17 07:15:16','2017-10-17 07:15:16','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2015/05/3rd-agroChem-Logo.jpg\" name=\"3RD AGRO CHEM BANGLADESH INTERNATIONAL EXPO 2018\" post=\"From 21 – 24 March 2018\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.\r\n[/speaker]\r\n\r\n<!--[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\" SRI LANKA INTERNATIONAL AGRO CHEM EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]-->\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2017-10-17 07:15:16','2017-10-17 07:15:16','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0),(667,1,'2018-04-16 04:32:27','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-04-16 04:32:27','0000-00-00 00:00:00','',0,'http://cems-agrochem.com/?p=667',0,'post','',0),(668,1,'2018-04-16 04:42:23','2018-04-16 04:42:23','','4th-agrochem-2019','','inherit','open','closed','','4th-agrochem-2019','','','2018-04-16 04:42:23','2018-04-16 04:42:23','',5,'http://cems-agrochem.com/wp-content/uploads/2015/05/4th-Agrochem-2019.png',0,'attachment','image/png',0),(669,1,'2018-04-16 04:42:34','2018-04-16 04:42:34','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2015/05/4th-Agrochem-2019.png\" name=\"3RD AGRO CHEM BANGLADESH INTERNATIONAL EXPO 2018\" post=\"From 21 – 24 March 2018\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.\n[/speaker]\n\n<!--[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\" SRI LANKA INTERNATIONAL AGRO CHEM EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\n[/speaker]-->\n\n ','Home','','inherit','closed','closed','','5-autosave-v1','','','2018-04-16 04:42:34','2018-04-16 04:42:34','',5,'http://cems-agrochem.com/blog/index.php/5-autosave-v1/',0,'revision','',0),(670,1,'2018-04-16 04:43:30','2018-04-16 04:43:30','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2015/05/4th-Agrochem-2019.png\" name=\"4TH AGRO CHEM BANGLADESH INTERNATIONAL EXPO 2019\" post=\"From 27–30 March 2019\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.[/speaker]\r\n\r\n<!--[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\" SRI LANKA INTERNATIONAL AGRO CHEM EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]-->\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2018-04-16 04:43:30','2018-04-16 04:43:30','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0),(671,1,'2018-04-16 04:45:20','2018-04-16 04:45:20','','4th-agro-2019','','inherit','open','closed','','4th-agro-2019','','','2018-04-16 04:45:20','2018-04-16 04:45:20','',5,'http://cems-agrochem.com/wp-content/uploads/2015/05/4th-agro-2019.jpg',0,'attachment','image/jpeg',0),(672,1,'2018-04-16 04:45:33','2018-04-16 04:45:33','[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2015/05/4th-agro-2019.jpg\" name=\"4TH AGRO CHEM BANGLADESH INTERNATIONAL EXPO 2019\" post=\"From 27–30 March 2019\" link=\"http://cems-agrochem.com/agrochembd/\" target=\"_blank\"]International Convention City, Bashundara, Dhaka, Bangladesh.[/speaker]\r\n\r\n<!--[speaker photo=\"http://cems-agrochem.com/wp-content/uploads/2016/12/AgroChemSriLanka2017.jpg\" name=\" SRI LANKA INTERNATIONAL AGRO CHEM EXPO 2017\" post=\"From 27 ~ 29 November 2017\" link=\"http://cems-agrochem.com/agrochemsri/\" target=\"_blank\"]Sri Lanka Exhibition & Convention Center (SLECC).\r\n[/speaker]-->\r\n\r\n ','Home','','inherit','closed','closed','','5-revision-v1','','','2018-04-16 04:45:33','2018-04-16 04:45:33','',5,'http://cems-agrochem.com/blog/index.php/5-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_registration_log` -- DROP TABLE IF EXISTS `wp_registration_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_registration_log` ( `ID` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `IP` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `blog_id` bigint(20) NOT NULL DEFAULT '0', `date_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`ID`), KEY `IP` (`IP`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_registration_log` -- LOCK TABLES `wp_registration_log` WRITE; /*!40000 ALTER TABLE `wp_registration_log` DISABLE KEYS */; INSERT INTO `wp_registration_log` VALUES (1,'mahatab.cems@gmail.com','61.247.190.230',2,'2016-12-14 08:02:00'); /*!40000 ALTER TABLE `wp_registration_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_signups` -- DROP TABLE IF EXISTS `wp_signups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_signups` ( `signup_id` bigint(20) NOT NULL AUTO_INCREMENT, `domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `active` tinyint(1) NOT NULL DEFAULT '0', `activation_key` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `meta` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`signup_id`), KEY `activation_key` (`activation_key`), KEY `user_email` (`user_email`), KEY `user_login_email` (`user_login`,`user_email`), KEY `domain_path` (`domain`(140),`path`(51)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_signups` -- LOCK TABLES `wp_signups` WRITE; /*!40000 ALTER TABLE `wp_signups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_signups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_site` -- DROP TABLE IF EXISTS `wp_site`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_site` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `domain` (`domain`(140),`path`(51)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_site` -- LOCK TABLES `wp_site` WRITE; /*!40000 ALTER TABLE `wp_site` DISABLE KEYS */; INSERT INTO `wp_site` VALUES (1,'cems-agrochem.com','/'); /*!40000 ALTER TABLE `wp_site` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_sitemeta` -- DROP TABLE IF EXISTS `wp_sitemeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_sitemeta` ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `site_id` bigint(20) NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `meta_key` (`meta_key`(191)), KEY `site_id` (`site_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3770 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_sitemeta` -- LOCK TABLES `wp_sitemeta` WRITE; /*!40000 ALTER TABLE `wp_sitemeta` DISABLE KEYS */; INSERT INTO `wp_sitemeta` VALUES (1,1,'site_name','Agro and Chem '),(2,1,'admin_email','saiful.cems92@gmail.com'),(3,1,'admin_user_id','1'),(4,1,'registration','none'),(5,1,'upload_filetypes','jpg jpeg png gif mov avi mpg 3gp 3g2 midi mid pdf doc ppt odt pptx docx pps ppsx xls xlsx key mp3 ogg wma m4a wav mp4 m4v webm ogv wmv flv'),(6,1,'blog_upload_space','100'),(7,1,'fileupload_maxk','1500'),(8,1,'site_admins','a:1:{i:0;s:8:\"foodagro\";}'),(9,1,'allowedthemes','a:2:{s:4:\"Expo\";b:1;s:13:\"twentysixteen\";b:1;}'),(10,1,'illegal_names','a:9:{i:0;s:3:\"www\";i:1;s:3:\"web\";i:2;s:4:\"root\";i:3;s:5:\"admin\";i:4;s:4:\"main\";i:5;s:6:\"invite\";i:6;s:13:\"administrator\";i:7;s:5:\"files\";i:8;s:4:\"blog\";}'),(11,1,'wpmu_upgrade_site','37965'),(12,1,'welcome_email','Howdy USERNAME,\n\nYour new SITE_NAME site has been successfully set up at:\nBLOG_URL\n\nYou can log in to the administrator account with the following information:\n\nUsername: USERNAME\nPassword: PASSWORD\nLog in here: BLOG_URLwp-login.php\n\nWe hope you enjoy your new site. Thanks!\n\n--The Team @ SITE_NAME'),(13,1,'first_post','Welcome to %s. This is your first post. Edit or delete it, then start blogging!'),(14,1,'siteurl','http://cems-agrochem.com/'),(15,1,'add_new_users','0'),(16,1,'upload_space_check_disabled','1'),(17,1,'subdomain_install','0'),(18,1,'global_terms_enabled','0'),(19,1,'ms_files_rewriting','0'),(20,1,'initial_db_version','25824'),(21,1,'active_sitewide_plugins','a:0:{}'),(22,1,'WPLANG','en_US'),(28,1,'user_count','2'),(29,1,'blog_count','2'),(30,1,'can_compress_scripts','1'),(31,1,'_site_transient_timeout_browser_f90f9d5b5a1bb1d6e2289490ecf74ebb','1482306788'),(32,1,'_site_transient_browser_f90f9d5b5a1bb1d6e2289490ecf74ebb','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"50.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}'),(33,1,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.5.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-4.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";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-4.9.5.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-4.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";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-4.8.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-4.8.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.8.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.8.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.8.6\";s:7:\"version\";s:5:\"4.8.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";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:60:\"https://downloads.wordpress.org/release/wordpress-4.7.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-4.7.10.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.10-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.7.10-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.7.10\";s:7:\"version\";s:6:\"4.7.10\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";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:60:\"https://downloads.wordpress.org/release/wordpress-4.6.11.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-4.6.11.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.11-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.6.11-new-bundled.zip\";s:7:\"partial\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.6.11-partial-1.zip\";s:8:\"rollback\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.11-rollback-1.zip\";}s:7:\"current\";s:6:\"4.6.11\";s:7:\"version\";s:6:\"4.6.11\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:5:\"4.6.1\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1523853230;s:15:\"version_checked\";s:5:\"4.6.1\";s:12:\"translations\";a:0:{}}'),(42,1,'registrationnotification','yes'),(43,1,'welcome_user_email','Howdy USERNAME,\n\nYour new account is set up.\n\nYou can log in with the following information:\nUsername: USERNAME\nPassword: PASSWORD\nLOGINLINK\n\nThanks!\n\n--The Team @ SITE_NAME'),(148,1,'_site_transient_timeout_browser_00cb6228a64f759a1bb585e143526e4f','1484475293'),(149,1,'_site_transient_browser_00cb6228a64f759a1bb585e143526e4f','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}'),(198,1,'auto_core_update_notified','a:4:{s:4:\"type\";s:6:\"manual\";s:5:\"email\";s:23:\"saiful.cems92@gmail.com\";s:7:\"version\";s:5:\"4.7.1\";s:9:\"timestamp\";i:1484648581;}'),(670,1,'_site_transient_timeout_browser_ce290af4083a5e71c26c2d360ac888b6','1494388596'),(671,1,'_site_transient_browser_ce290af4083a5e71c26c2d360ac888b6','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"57.0.2987.133\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}'),(1148,1,'_site_transient_timeout_browser_ba081c70c62b1a73f7586809b37ba98f','1500270743'),(1149,1,'_site_transient_browser_ba081c70c62b1a73f7586809b37ba98f','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"59.0.3071.115\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}'),(2032,1,'_site_transient_timeout_browser_ae7243d6fcce16c4a1bb2c2339d3a779','1508829189'),(2033,1,'_site_transient_browser_ae7243d6fcce16c4a1bb2c2339d3a779','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"61.0.3163.100\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}'),(3760,1,'_site_transient_timeout_browser_efc56fe28520bcd166ef136f44025003','1524457947'),(3761,1,'_site_transient_browser_efc56fe28520bcd166ef136f44025003','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"65.0.3325.181\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}'),(3762,1,'_site_transient_timeout_theme_roots','1523854959'),(3763,1,'_site_transient_theme_roots','a:4:{s:4:\"Expo\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}'),(3765,1,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1523853239;s:7:\"checked\";a:4:{s:4:\"Expo\";s:5:\"1.1.0\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:14:\"twentyfourteen\";s:3:\"2.1\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}'),(3767,1,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1523853243;s:7:\"checked\";a:1:{s:19:\"akismet/akismet.php\";s:5:\"4.0.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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.0.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.3.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:{}}}}'),(3768,1,'_site_transient_timeout_available_translations','1523865096'),(3769,1,'_site_transient_available_translations','a:89:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-06 11:26:31\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-21 10:19:10\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 18:36:09\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-29 08:38:56\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.5.14\";s:7:\"updated\";s:19:\"2017-11-08 13:11:44\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.5.14/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-24 13:13:07\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-20 16:53:20\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:6:\"4.5.10\";s:7:\"updated\";s:19:\"2016-04-19 23:16:37\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.5.10/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2017-01-05 11:04:12\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.7\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.7/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:6:\"4.5.14\";s:7:\"updated\";s:19:\"2018-04-05 19:28:39\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.5.14/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-01 16:18:09\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-29 14:03:59\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:56:13\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:59:43\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-21 21:20:26\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-21 21:21:17\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-09 20:42:31\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 23:19:29\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 22:36:25\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 02:18:44\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-20 07:14:07\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 11:54:12\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-04 22:04:52\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 12:34:44\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-19 13:48:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 15:07:52\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-31 08:03:58\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-04 06:10:33\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 17:56:31\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 22:11:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-22 16:41:36\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-27 18:10:49\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-23 20:20:40\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 18:30:48\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-10 18:42:25\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-10 18:17:57\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-02 11:49:52\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-21 15:44:17\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-08 11:09:06\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-25 19:56:49\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-03 13:43:01\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-07 15:12:28\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-06 20:18:25\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-22 05:34:53\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-29 11:28:08\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-19 08:05:09\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-01 15:23:06\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 11:51:34\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-24 07:18:31\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 21:29:34\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-26 17:38:44\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:6:\"4.5.10\";s:7:\"updated\";s:19:\"2016-05-12 13:55:28\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.5.10/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-13 20:38:52\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 14:18:43\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 13:09:49\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2017-01-08 18:34:47\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-14 13:24:10\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-28 08:58:28\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-23 13:45:11\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-22 09:54:16\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-26 14:59:30\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2017-01-10 08:18:16\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-20 20:55:13\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-30 19:40:04\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-08 14:52:32\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-04 18:38:43\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 07:00:01\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 16:41:17\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-01 10:58:06\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-12 07:04:13\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 10:50:15\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-01 16:07:46\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2017-01-04 23:08:07\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2017-01-08 10:11:20\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:6:\"4.5.14\";s:7:\"updated\";s:19:\"2018-04-07 01:47:38\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.5.14/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-18 13:53:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-05 11:58:02\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:6:\"4.5.14\";s:7:\"updated\";s:19:\"2017-11-15 21:20:48\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.5.14/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}'); /*!40000 ALTER TABLE `wp_sitemeta` 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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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 (11,2,0),(15,2,0),(18,2,0),(21,2,0),(24,2,0),(27,2,0),(30,2,0),(33,2,0),(37,2,0),(40,2,0),(43,2,0),(46,2,0),(50,2,0),(94,2,0),(575,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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci 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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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,0),(2,2,'nav_menu','',0,15); /*!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) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!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 */; /*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `name` (`name`(191)), KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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,'Main Menu','main-menu',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_tinycarousel` -- DROP TABLE IF EXISTS `wp_tinycarousel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_tinycarousel` ( `tch_id` int(11) NOT NULL AUTO_INCREMENT, `tch_viewport` int(11) NOT NULL DEFAULT '473', `tch_width` int(11) NOT NULL DEFAULT '200', `tch_height` int(11) NOT NULL DEFAULT '150', `tch_display` int(11) NOT NULL DEFAULT '1', `tch_controls` varchar(5) NOT NULL DEFAULT 'true', `tch_interval` varchar(5) NOT NULL DEFAULT 'true', `tch_intervaltime` int(11) NOT NULL DEFAULT '3000', `tch_duration` int(11) NOT NULL DEFAULT '2000', `tch_folder` varchar(255) NOT NULL, `tch_random` varchar(3) NOT NULL DEFAULT 'NO', PRIMARY KEY (`tch_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_tinycarousel` -- LOCK TABLES `wp_tinycarousel` WRITE; /*!40000 ALTER TABLE `wp_tinycarousel` DISABLE KEYS */; INSERT INTO `wp_tinycarousel` VALUES (1,500,200,150,1,'true','true',3000,2000,'wp-content/gallery/valued-logo','NO'),(2,473,100,75,1,'true','true',3000,2000,'wp-content/plugins/tiny-carousel-horizontal-slider/images/100x75/','NO'); /*!40000 ALTER TABLE `wp_tinycarousel` 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','foodagro'),(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','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks,wp410_dfw,wp390_widgets'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','667'),(15,1,'wp_user-settings','libraryContent=browse&hidetb=1&editor=html'),(16,1,'wp_user-settings-time','1481714147'),(17,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(18,1,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(19,1,'nav_menu_recently_edited','2'),(21,1,'closedpostboxes_page','a:0:{}'),(22,1,'metaboxhidden_page','a:4:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(23,1,'default_password_nag',''),(24,1,'source_domain','cems-agrochem.com'),(25,1,'primary_blog','1'),(26,1,'wp_2_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(27,1,'wp_2_user_level','10'),(28,1,'closedpostboxes_dashboard','a:0:{}'),(29,1,'metaboxhidden_dashboard','a:0:{}'),(30,101010,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,101010,'wp_user_level','10'),(32,101010,'session_tokens','a:4:{s:64:\"3a4946d850ae4fc62d6d73cf6737713eefd1a6d0cc41dbfb9aa2689d47ff777f\";a:4:{s:10:\"expiration\";i:1518799021;s:2:\"ip\";s:12:\"35.183.24.90\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\";s:5:\"login\";i:1518626221;}s:64:\"2c6f78af818a36dfdb9c69489a871c1650404eb496d27623716e2bb424832f1e\";a:4:{s:10:\"expiration\";i:1518866895;s:2:\"ip\";s:12:\"35.183.24.90\";s:2:\"ua\";s:62:\"Opera/9.80 (Windows NT 5.1; U; en) Presto/2.2.15 Version/10.10\";s:5:\"login\";i:1518694095;}s:64:\"742fb050822cc79e429a10d8855e5fc8f14cd62a8f07b4378b393d8845c716f2\";a:4:{s:10:\"expiration\";i:1518872239;s:2:\"ip\";s:12:\"35.183.24.90\";s:2:\"ua\";s:62:\"Opera/9.80 (Windows NT 5.1; U; en) Presto/2.2.15 Version/10.10\";s:5:\"login\";i:1518699439;}s:64:\"3ecab6e234bebd7a6992b8eee1609becf83de4956e4053e1014098f80759a047\";a:4:{s:10:\"expiration\";i:1518875639;s:2:\"ip\";s:12:\"35.183.24.90\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\";s:5:\"login\";i:1518702839;}}'),(33,101010,'primary_blog','1'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `spam` tinyint(2) NOT NULL DEFAULT '0', `deleted` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=101011 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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,'foodagro','$P$BWF3QExOrEzxFW3jEu3D1jWZh9usQk0','foodagro','mahatab.cems@gmail.com','','2015-05-26 08:46:14','',0,'foodagro',0,0),(101010,'backup','$P$BOSGstQBOF9swoOaDl.SylLEGH8o0K.','','','','2012-09-28 00:00:00','',0,'',0,0); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_035c54e_14' -- /*!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 2018-06-28 8:47:58